Connect your systems to ANANKE.
Everything you can do in the ANANKE web application, you can do programmatically. A unified Integration API and a TypeScript SDK let you issue, stamp, verify, and manage records from your own applications.
One API. Both products.
The Integration API is a single gateway that covers both ANANKE Trust and T-CODE. Authenticate with an API key, call RESTful endpoints, and get consistent JSON responses. The TypeScript SDK wraps the API with full type safety.
Unified gateway
A single base URL (api.anankelabs.net) for all operations — Trust issuance, T-CODE stamping, verification, lifecycle management, and bulk workflows.
API key authentication
Authenticate with a single x-api-key header. No OAuth flows, no token refresh. Keys are scoped to your organization and managed through the ANANKE web application.
TypeScript SDK
Install @ananke/sdk from npm. Full type safety, structured error handling, and a resource-based API that mirrors the REST endpoints.
REST API
Prefer to call the API directly? Every endpoint is a standard REST call with JSON request/response bodies. Works with any language or HTTP client.
See it in action
Every operation is available through both the TypeScript SDK and the REST API. Choose the approach that fits your stack.
npm install @ananke/sdk
import { AnankeClient } from '@ananke/sdk';
const client = new AnankeClient({
baseUrl: 'https://api.anankelabs.net',
apiKey: 'ak_live_...',
});What you can do through the API
The full platform capability set is available programmatically.
- Template CRUD and field schema management
- Single and bulk document issuance
- Lifecycle management: suspend, revoke, reactivate, replace
- Verification by hash, by reference, or by PDF upload
- Bulk job creation, polling, per-row tracking, artifact download
- TDOC template and placement template CRUD
- Single and bulk document stamping
- Lifecycle management: suspend, revoke, reactivate, replace
- Verification by reference or raw payload
- Digital twin access for verified documents
- Reference data: organization info, document types, public keys
- Paginated list and search endpoints for all resources
- Structured error responses with field-level validation details
Full documentation at docs.anankelabs.net
Detailed endpoint reference, authentication guide, webhook setup, bulk workflow patterns, and code samples for every operation.
Ready to integrate?
Request an API key through the ANANKE web application, or contact us to discuss your integration requirements.