Skip to main content
Subscribe, get your platform key, and verify a basic request.

Getting started

Subscribe to Coding Plan

Visit Subscribe to Coding Plan and choose the plan that fits your workflow.

Get your platform key

Visit API Keys > Create Coding Plan Key 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 Coding 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

pip install anthropic

2. Set environment variables

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 the Model Catalog.
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: