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

# Quick Start

> Subscribe, get your platform key, and verify a basic request.

> Subscribe, get your platform key, and verify a basic request.

## Getting started

### Subscribe to Token Plan

Visit <a href="https://www.apigo.ai/pricing" target="_blank" rel="noreferrer">Subscribe to Token Plan</a> and choose the plan that fits your workflow.

### Get your platform key

Visit <a href="https://www.apigo.ai/console/api-keys" target="_blank" rel="noreferrer">API Keys > Create Token Plan Key</a> to get your platform key.

> **Important:**
>
> * Keep your key safe. Store it in environment variables or a config file
> * This key is only valid while your Token Plan subscription is active
> * For tool-specific configuration, follow the exact field names in each tool guide

## Test an API request

If you want to verify the platform first, run a minimal test through the Anthropic-compatible interface.

### 1. Install the Anthropic SDK

```bash theme={null}
pip install anthropic
```

### 2. Set environment variables

```bash theme={null}
export ANTHROPIC_BASE_URL=YOUR_PLATFORM_BASE_URL
export ANTHROPIC_API_KEY=YOUR_PLATFORM_API_KEY
```

### 3. Send a request

Replace `YOUR_MODEL_ID` with a model from <a href="https://www.apigo.ai/models" target="_blank" rel="noreferrer">Model Catalog</a>.

```python theme={null}
import os
import anthropic

client = anthropic.Anthropic(
    base_url=os.environ["ANTHROPIC_BASE_URL"],
    api_key=os.environ["ANTHROPIC_API_KEY"],
)

message = client.messages.create(
    model="YOUR_MODEL_ID",
    max_tokens=1000,
    system="You are a helpful assistant.",
    messages=[
        {
            "role": "user",
            "content": "Hi, how are you?"
        }
    ]
)

print(message.content)
```

## Integrate AI coding tools

After the platform base URL and key are ready, continue with the tool guides:

* [Claude Code](/en/coding-plan/ai-tools/claude-code)
* [OpenClaw](/en/coding-plan/ai-tools/openclaw)
* [Codex](/en/coding-plan/ai-tools/codex)
