SDKs
Official AuthSpoke SDKs for Java, Python, Go, TypeScript and C#.
On the roadmap. Official SDKs are coming. This page anticipates them so the navigation and your mental model are ready.
The SDK is not an afterthought. Every public API is designed to be generated into a clean client, so you rarely construct HTTP requests by hand.
Planned languages: Java · Python · Go · TypeScript · C#.
Generate a client today#
Because the API Reference is driven by a canonical OpenAPI specification, you can already generate a typed client now:
# download the spec
curl -O https://developer.authspoke.com/openapi/authspoke.json
# generate a client with your tool of choice (example: openapi-generator)
openapi-generator-cli generate -i authspoke.json -g typescript-fetch -o ./authspoke-client
When the official SDKs ship, they'll wrap authentication, pagination and errors with idiomatic ergonomics for each language — and they'll be generated from the same spec, so they never drift from the API.