Humanos 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Humanos --version 1.0.2
                    
NuGet\Install-Package Humanos -Version 1.0.2
                    
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="Humanos" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Humanos" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="Humanos" />
                    
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 Humanos --version 1.0.2
                    
#r "nuget: Humanos, 1.0.2"
                    
#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 Humanos@1.0.2
                    
#: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=Humanos&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=Humanos&version=1.0.2
                    
Install as a Cake Tool

Humanos SDK for C# / .NET

Official C# SDK for the Humanos API. Provides automatic request signing, webhook verification and decryption, and full API access for credential management.

NuGet version License: MIT

Features

  • Automatic Request Signing - All API requests are signed with HMAC-SHA256
  • Webhook Verification - Verify signatures and decrypt encrypted payloads
  • Strong Typing - Full type definitions with generated models
  • Simple API - Clean interface for all Humanos endpoints

Getting Started

1. Install the SDK

dotnet add package Humanos.

2. Create an Account

Sign up at humanos.id and create your organization.

3. Get Your API Keys

In the Humanos Dashboard, go to Settings > API Keys and copy:

  • API Key - Used to authenticate requests
  • Signature Secret - Used to sign requests with HMAC-SHA256

4. Get Your Webhook Keys

In the Humanos Dashboard, go to Settings > Webhooks and copy:

  • Webhook Signature Secret - Used to verify incoming webhook signatures
  • Webhook Encryption Secret - Used to decrypt webhook payloads
  • Webhook Encryption Salt - Used alongside the encryption secret

5. Initialize the Client

using Humanos;

var client = new HumanosClient(new HumanosClientConfig
{
    BasePath = "https://api.humanos.id",
    ApiKey = Environment.GetEnvironmentVariable("HUMANOS_API_KEY")!,
    SignatureSecret = Environment.GetEnvironmentVariable("HUMANOS_SIGNATURE_SECRET")!,
});

6. Make Your First API Call

Fetch all your credential requests:

var response = client.Requests.GetRequests();
Console.WriteLine(response.Data);

Usage Examples

Create a Credential Request

Send a credential request to one or more contacts using pre-configured resources:

using Humanos.Generated.Model;

var request = client.Requests.Generate(new GenerateRequestDto(
    contacts: new List<string> { "user@example.com" },
    securityLevel: GenerateRequestDto.SecurityLevelEnum.CONTACT,
    resourcesIds: new List<string> { "your-resource-id" }
));

Console.WriteLine("Request ID: " + request.Id);
Console.WriteLine("Credentials: " + request.Credentials);

You can also use group IDs to include all resources in a group:

var request = client.Requests.Generate(new GenerateRequestDto(
    contacts: new List<string> { "user@example.com" },
    securityLevel: GenerateRequestDto.SecurityLevelEnum.CONTACT,
    groupIds: new List<string> { "your-group-id" }
));

Or provide inline credential data directly:

var request = client.Requests.Generate(new GenerateRequestDto(
    contacts: new List<string> { "user@example.com" },
    securityLevel: GenerateRequestDto.SecurityLevelEnum.CONTACT,
    credentials: new List<CredentialDto>
    {
        new CredentialDto(
            scope: "onboarding",
            type: CredentialDto.TypeEnum.JSON,
            name: "Service Agreement",
            data: new List<MandateDataDto>
            {
                new MandateDataDto(label: "Company", type: "string", value: new MandateDataDtoValue("Acme Corp")),
                new MandateDataDto(label: "Plan", type: "string", value: new MandateDataDtoValue("Enterprise")),
            }
        ),
    }
));

Receive Webhooks

Humanos sends webhook events when credentials are signed, identity checks complete, or OTPs fail. Payloads are encrypted and signed.

The SDK provides Webhooks.ProcessWebhook which handles signature verification and payload decryption automatically:

using Humanos;

var config = new WebhookConfig
{
    SignatureSecret = Environment.GetEnvironmentVariable("HUMANOS_WEBHOOK_SIGNATURE_SECRET")!,
    EncryptionSecret = Environment.GetEnvironmentVariable("HUMANOS_WEBHOOK_ENCRYPTION_SECRET")!,
    EncryptionSalt = Environment.GetEnvironmentVariable("HUMANOS_WEBHOOK_ENCRYPTION_SALT")!,
};

app.MapPost("/webhook", async (HttpContext context) =>
{
    using var reader = new StreamReader(context.Request.Body);
    var rawBody = await reader.ReadToEndAsync();

    var headers = new Dictionary<string, string>
    {
        { "x-signature", context.Request.Headers["x-signature"].ToString() },
        { "x-timestamp", context.Request.Headers["x-timestamp"].ToString() },
    };

    var payload = Webhooks.ProcessWebhook<Dictionary<string, object>>(rawBody, headers, config);

    var eventType = payload["eventType"]?.ToString();
    switch (eventType)
    {
        case "credential":
            Console.WriteLine("Credential signed: " + payload["requestId"]);
            break;
        case "identity":
            Console.WriteLine("Identity verified: " + payload["requestId"]);
            break;
        case "otp.failed":
            Console.WriteLine("OTP failed: " + payload["requestId"]);
            break;
        case "test":
            Console.WriteLine("Test event received");
            break;
    }

    return Results.Ok();
});

For local development, use ngrok to expose your server:

ngrok http 3000

Then set the ngrok URL (e.g. https://xxxx.ngrok-free.app/webhook) as your webhook URL in the Humanos Dashboard under Settings > Webhooks.

API Reference

Resources

// List resources
var resources = client.Resources.GetResources();

// List resource groups
var groups = client.Resources.GetGroups();

Requests

// List requests
var requests = client.Requests.GetRequests();

// Get request details
var detail = client.Requests.GetRequestDetail(requestId);

// Create a credential request
var request = client.Requests.Generate(new GenerateRequestDto(...));

// Cancel a request
client.Requests.CancelRequest(requestId);

// Resend OTP
client.Requests.ResendOtp(requestId, contact: "user@example.com");

Users

using Humanos.Generated.Model;

// Create or update users
var users = client.Users.Create(new List<CreateSubjectDto>
{
    new CreateSubjectDto(
        contact: "user@example.com",
        internalId: "your-internal-id",
        identity: new IdentityDto(
            fullName: "John Doe",
            birth: new DateTime(1990, 1, 1),
            docId: "123456789",
            countryAlpha3: "USA"
        )
    )
});

Credentials

// Get credential by ID
var credential = client.Credentials.GetCredential(credentialId);

// Get credential with PDF
var credential = client.Credentials.GetCredential(credentialId, includePdf: true);

Error Handling

The SDK throws ApiException for failed requests. The exception includes the HTTP status and response body:

using Humanos.Generated.Client;

try
{
    var request = client.Requests.Generate(new GenerateRequestDto(...));
}
catch (ApiException e)
{
    Console.Error.WriteLine($"Status: {e.ErrorCode}");
    Console.Error.WriteLine($"Body: {e.ErrorContent}");
}
catch (Exception e)
{
    Console.Error.WriteLine($"Error: {e.Message}");
}

Documentation

Support

  • Email: tech@humanos.tech

License

MIT License - see LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
1.1.0 100 7/26/2026
1.0.9 122 7/10/2026
1.0.8 109 7/10/2026
1.0.7 109 7/7/2026
1.0.6 145 6/22/2026
1.0.5 121 5/20/2026
1.0.4 108 5/20/2026
1.0.3 107 5/18/2026
1.0.2 127 4/14/2026
1.0.1 125 4/1/2026