Skip to content
DeepTokenInference Gateway
HomeDashboardModelsLeaderboardDocsPricingEnterpriseBlog

    Introduction

    • Getting started
    • Quickstart
    • Integrations

    API

    • Authentication
    • Chat Completions
    • Models
    • Errors

    Billing

    • Billing
    • Organizations

    Getting started

    DeepToken is a multi-model inference gateway. Point any OpenAI-compatible client at /v1 and pick a model from the catalog β€” we handle routing, fallback, and billing.

    1. Create an account

    Sign up at /signup. Email + password is fine; Google OAuth works too. New accounts start on the Free tier with a small monthly credit grant so you can ship your first call without entering payment info.

    2. Mint an API key

    In the dashboard, open API Keys β†’ Create key. Copy the key once β€” we never show it again. Treat it like a password.

    export DEEPTOKEN_API_KEY="dtk_..."
    

    3. Make your first call

    curl https://api.deeptoken.app/v1/chat/completions \
      -H "Authorization: Bearer $DEEPTOKEN_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "model": "gpt-4o-mini",
        "messages": [{"role": "user", "content": "Say hello in one sentence."}]
      }'
    

    That's it. The response shape matches OpenAI exactly, so existing SDKs work with only a base_url change.

    Next steps

    • Authentication β€” API key scopes, IP allowlists, per-key rate limits
    • Models β€” the routable model catalog
    • Errors β€” error categories and retry hints
    • Pricing β€” credit packs, subscriptions, and per-model multipliers

    Next

    Quickstart

    On this page

    • 1. Create an account
    • 2. Mint an API key
    • 3. Make your first call
    • Next steps