> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anyone.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Access 40+ AI models with a single API key.

**One API key to access all major AI models.**

Anyone saves you the hassle of registering on multiple AI platforms and managing separate API keys. Just get one API key from Anyone, and you can call GPT-5.4, Claude, Gemini, DeepSeek, and 40+ other models — using the OpenAI SDK you already know, with just a base URL change.

```python theme={null}
from openai import OpenAI

client = OpenAI(
    base_url="https://api.anyone.ai/v1",  # just change this line
    api_key="your Anyone API key",
)

# Use the same client to call any model
response = client.chat.completions.create(
    model="claude-sonnet-4-6",  # or gpt-5.4 / gemini-3.1-pro-preview / DeepSeek-V3.2
    messages=[{"role": "user", "content": "Hello!"}],
)
```

## Why use Anyone?

<CardGroup cols={2}>
  <Card title="One key for all models" icon="key">
    No need to register with OpenAI, Anthropic, Google, and others separately. One Anyone API key covers everything.
  </Card>

  <Card title="Fully compatible with OpenAI SDK" icon="plug">
    Use the OpenAI Python/JS SDK to call Claude, Gemini, and other models with zero code changes.
  </Card>

  <Card title="40+ models, switch anytime" icon="shuffle">
    GPT-5.4, Claude Sonnet 4.6, Gemini 3.1 Pro, DeepSeek, Mistral, Llama... just change the model name to switch.
  </Card>

  <Card title="Pay as you go" icon="circle-dollar-to-slot">
    Top up and use. Billed by token consumption with transparent pricing. Check usage in real time from the dashboard.
  </Card>
</CardGroup>

## Supported models

| Provider  | Example models                     |
| --------- | ---------------------------------- |
| OpenAI    | GPT-5.4, GPT-5.3-Codex             |
| Anthropic | Claude Opus 4.6, Claude Sonnet 4.6 |
| Google    | Gemini 3.1 Pro                     |
| DeepSeek  | DeepSeek-V3.2                      |
| Zhipu AI  | GLM-5.1                            |
| xAI       | Grok-4.20                          |
| MiniMax   | MiniMax-M2.5                       |
| Moonshot  | Kimi-K2.5                          |

## Supported API formats

You can send requests in any of the following formats — Anyone converts automatically:

| Format                  | Endpoint                                       |
| ----------------------- | ---------------------------------------------- |
| OpenAI Chat Completions | `/v1/chat/completions`                         |
| OpenAI Responses        | `/v1/responses`                                |
| Claude Messages         | `/v1/messages`                                 |
| Google Gemini           | `/v1beta/models/{model}:generateContent`       |
| Embeddings              | `/v1/embeddings`                               |
| Image generation        | `/v1/images/generations`                       |
| Audio                   | `/v1/audio/transcriptions`, `/v1/audio/speech` |

<Card title="Get started in 3 minutes" icon="rocket" href="/quickstart">
  Sign up → get an API key → send your first request. It's that simple.
</Card>
