Use an official SDK to integrate BlockDB in your language of choice. Pass your API key (from dashboard.blockdb.io) and the client sendsDocumentation Index
Fetch the complete documentation index at: https://docs.blockdb.io/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer on every request.
Available SDKs
.NET
NuGet package for .NET 10+. DI-friendly, fully async, full endpoint coverage.
Python
PyPI package for Python 3.x. Async-first with a sync wrapper included.
JavaScript / TypeScript
npm package for Node ≥ 18 and browsers. ESM + CJS, full TypeScript types.
Quick comparison
| Feature | .NET | Python | JavaScript |
|---|---|---|---|
| Package | NuGet: BlockDb.Api.Sdk | PyPI: blockdb | npm: @blockdb/sdk |
| Source | GitHub | GitHub | GitHub |
| Auth | API key | API key | API key |
| Async | Fully async (Task<T>) | Async-first + sync wrapper | async/await, async generators |
| Pagination | PagedResponse<T> + PaginationExtensions | PagedResponse[T] + async_pages | Cursor + paginate* generators |
All SDKs are open source and do not embed secrets. Supply an API key at runtime (for example
BLOCKDB_API_KEY). See Authorization for creating and rotating keys.