.NET SDK

Official .NET SDK for Anakin (anakin.io) — coming soon

The official .NET / C# SDK for the Anakin API is currently in development and will be published to NuGet shortly.

StatusComing soon
Targetnet6.0, net8.0
PackageAnakin on NuGet (pending)
Sourcegithub.com/Anakin-Inc/anakin-dotnet
LicenseApache 2.0

The source code is complete and tested. We are currently working through the NuGet account setup required for publishing.

Preview

Once published, installation will be:

dotnet add package Anakin

And usage:

using Anakin;

using var client = AnakinClient.Create(opts =>
{
    opts.ApiKey = "ak-...";  // or set ANAKIN_API_KEY
});

var doc = await client.ScrapeAsync("https://example.com");
Console.WriteLine(doc.Markdown);

All the same methods as the other SDKs — ScrapeAsync, MapAsync, CrawlAsync, SearchAsync, AgenticSearchAsync, WireAsync, plus browser-session management. Built on HttpClient + System.Text.Json with no third-party dependencies.

Get notified

Watch the GitHub repo for the release, or check anakin.io/docs/releases for the announcement.

In the meantime, you can use the REST API directly — see the API reference and the .NET Quick Start.