Ingeloop.Nucleus.ApiClient 0.0.6

Prefix Reserved
dotnet add package Ingeloop.Nucleus.ApiClient --version 0.0.6
                    
NuGet\Install-Package Ingeloop.Nucleus.ApiClient -Version 0.0.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ingeloop.Nucleus.ApiClient" Version="0.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ingeloop.Nucleus.ApiClient" Version="0.0.6" />
                    
Directory.Packages.props
<PackageReference Include="Ingeloop.Nucleus.ApiClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ingeloop.Nucleus.ApiClient --version 0.0.6
                    
#r "nuget: Ingeloop.Nucleus.ApiClient, 0.0.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Ingeloop.Nucleus.ApiClient@0.0.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ingeloop.Nucleus.ApiClient&version=0.0.6
                    
Install as a Cake Addin
#tool nuget:?package=Ingeloop.Nucleus.ApiClient&version=0.0.6
                    
Install as a Cake Tool

Ingeloop.Nucleus.ApiClient

A strongly-typed .NET client for the Nucleus API, generated from the OpenAPI specification.

This client provides:

  • Fully typed request and response DTOs
  • A lightweight HTTP setup based on HttpClient
  • Simple authentication via API key (Bearer token)
  • Works in .NET 6+ and .NET Framework 4.7.2

📦 Installation

dotnet add package Ingeloop.Nucleus.ApiClient

🚀 Quick Start

using Nucleus.Client;

var client = new NucleusApiClient(
    baseUrl: "https://your-nucleus-server.com",
    apiKey: "YOUR_API_KEY"
);

var projects = await client.GetProjectsAsync();

🔐 Authentication

Authentication is handled automatically via API key.

var client = new NucleusApiClient(baseUrl, apiKey);

This sets the Authorization: Bearer <API_KEY> header for all requests.


📚 Documentation

For full endpoint descriptions and schema details, consult the official API documentation: API Reference: https://nucleusapp.co/docs


🧱 Project Structure

File / Folder Purpose
BaseApiClient.cs Generated API client
NucleusApiClient.cs Thin wrapper providing easy authentication
HttpClientFactory.cs Creates configured HttpClient instance

Only NucleusApiClient should be used directly by applications.


📝 License

Proprietary – internal or authorized customer usage only.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.0.6 301 12/7/2025
0.0.5 274 11/13/2025
0.0.4 192 11/5/2025
0.0.2 188 11/5/2025
0.0.1 189 11/5/2025