DEVELOPER CENTER

Connect ideas to production.

API references, setup guides, and smart technical support. Get a key in 60 seconds and run your first request in three steps.

Setup guideEnvironment variablesCodex guideFAQ
60 SECOND START

Connect in three steps.

01

Get an API key

Create a key in the Tokenly dashboard and use it across four protocol surfaces.

View next step →
02

Set BASE_URL

Point requests to https://api.tokenly.ai/v1 and keep your familiar OpenAI SDK.

View next step →
OPENAI-COMPATIBLE API

Familiar interfaces, minimal migration.

Compatible with mainstream OpenAI SDKs, plus Claude Messages and Gemini Generative.

Endpointhttps://api.tokenly.ai/v1
AuthenticationBearer TOKENLY_API_KEY
Models14 active models
Rate limitsPer-account and per-project quotas
ErrorsStandard HTTP + request_id
SDKscURL · Python · JavaScript
# Replace only the model name
curl https://api.tokenly.ai/v1/chat/completions \
  -H "Authorization: Bearer $TOKENLY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-5.6-sol","messages":[{"role":"user","content":"Hello"}]}'