Skip to main content

Quick Start

Make your first Meto AI API call in a few minutes.

1. Create an account

  1. Go to https://metotoken.ai/sign-up
  2. Verify your email and sign in
  3. Add credits from Wallet / Billing if required by your plan

2. Create an API key

  1. Open Dashboard → API Keys
  2. Create a new key and copy it immediately
  3. Store the key securely — it will not be shown again in full

3. Send a chat completion request

Replace YOUR_API_KEY with your key:

curl https://api.metotoken.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o-mini",
"messages": [
{ "role": "user", "content": "Hello from Meto AI!" }
]
}'

4. Use your existing OpenAI SDK

Point the base URL to Meto AI and keep your existing code:

from openai import OpenAI

client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.metotoken.ai/v1",
)

response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}],
)

print(response.choices[0].message.content)

Next steps