Docs
Quickstart
Create an account, add balance, generate an API key, and make your first OpenAI-compatible call in five minutes.
1. Create an account
Sign up with email — no credit card required. One prepaid wallet covers every model on the gateway: text, image, and video.
2. Add balance
Top up from the console wallet page through the configured payment provider. There is no minimum top-up and unused balance never expires.
3. Create an API key
Open API Keys in the console and create a key. Copy it somewhere safe — it is only shown once. One key reaches every model; you can scope quotas per key later.
4. Make your first call
The gateway speaks the OpenAI wire protocol: point any OpenAI SDK or plain HTTP client at the base URL below and set the model you want.
curl https://easyairoute.com/v1/chat/completions \
-H "Authorization: Bearer sk-..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-sol",
"messages": [{"role": "user", "content": "Hello, EasyAI!"}]
}'What's next
Walk through the Python or Node SDK examples, or read the compatibility notes to see which endpoints and parameters the gateway supports.