Skip to main content
Anyone is compatible with the OpenAI API format, so any tool or SDK that supports OpenAI works out of the box — just change the base URL and API key.

Get started

1

Sign up and get a token

  1. Go to anyone.ai and create an account
  2. Log in and open the Dashboard
  3. Click TokenCreate token
  4. Give your token a name, then click Submit
  5. Copy the token (it is only shown once)
A token is your credential for calling the API. We recommend using different tokens for different projects to track usage separately.
2

Send your first request

Call the API with your token. Replace YOUR_TOKEN with the token you just copied.
curl https://api.anyone.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{
    "model": "gpt-4o",
    "messages": [
      {"role": "user", "content": "Say hello in one sentence."}
    ]
  }'
Example response:
{
  "id": "chatcmpl-...",
  "choices": [
    {
      "message": {
        "role": "assistant",
        "content": "Hello! Great to meet you."
      }
    }
  ],
  "usage": {
    "prompt_tokens": 13,
    "completion_tokens": 10,
    "total_tokens": 23
  }
}
Any tool compatible with the OpenAI API works directly with Anyone, including LangChain, LlamaIndex, Vercel AI SDK, Cherry Studio, and more. Just set the base URL and token.
3

Try other models

Change the model name to use a different model — no other code changes needed:
# Claude
response = client.chat.completions.create(
    model="claude-sonnet-4-6",
    messages=[{"role": "user", "content": "Hello"}],
)

# Gemini
response = client.chat.completions.create(
    model="gemini-3.1-pro-preview",
    messages=[{"role": "user", "content": "Hello"}],
)

# DeepSeek
response = client.chat.completions.create(
    model="DeepSeek-V3.2",
    messages=[{"role": "user", "content": "Hello"}],
)
4

Check your usage

Go to the Logs page in the dashboard to see details for each request: model, token usage, and cost. The Analytics page has summary charts.

Common use cases

Use Claude models

Call Claude via OpenAI format, or use the native Claude Messages format.

View all models

Call /v1/models to get the full list of available models.

Top up

Learn about top-up methods and pricing.

Format conversion

Using the OpenAI SDK to call Claude/Gemini? Anyone converts formats automatically.