Quick Start
Make your first Meto AI API call in a few minutes.
1. Create an account
- Go to https://metotoken.ai/sign-up
- Verify your email and sign in
- Add credits from Wallet / Billing if required by your plan
2. Create an API key
- Open Dashboard → API Keys
- Create a new key and copy it immediately
- 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)