gamAI API
OpenAI-compatible. Low-cost. 4,176 skills. Try Chat
Quick Start
curl http://gamai.io/v1/chat/completions -H "Content-Type: application/json" -H "Authorization: Bearer KEY" -d '{"model":"gamai/nano","messages":[{"role":"user","content":"Hello"}]}'
Python
from openai import OpenAI
client = OpenAI(base_url="http://gamai.io/v1", api_key="KEY")
r = client.chat.completions.create(model="gamai/nano", messages=[{"role":"user","content":"Hello"}])
print(r.choices[0].message.content)
Models
| Model | Speed | Best For |
|---|
| gamai/nano | ~1s | Fast |
| gamai/coder | ~1.3s | Code |
| gamai/reasoner | ~1.5s | Reasoning |
| gamai/vision | ~2s | Vision |
| gamai/omni | ~2s | General |
Pricing
| Plan | Price | Tokens |
|---|
| Free | 0 | 100K |
| Starter | 4.99 | 1M |
| Pro | 19.99 | 10M |
| Business | 89.99 | 100M |
| Enterprise | 399 | 1B |