AI0
API Key
One-time purchase. Secure. Instant delivery.
Pay. Get your key. Done.
What you get
- AI0 API Key
- One-time purchase
- Instant delivery after payment
- Key shown once
- Copy and store safely
- Includes plan limits / credits / rate rules
Use your key in your app, backend, or integration immediately after purchase.
Price & Credits
- Price: $9.99 one-time
- Credits included per plan
- Rate limit: 50,000 requests/month
- Usage scope: AI0 API access
- Recurring fee: None
After payment
- Payment confirmed
- Reveal key
- Copy key
- Use it right away
Your key is shown once for security. Save it immediately.
Pay here
Accepted payment methods
Product
AI0 API Key
Type
One-time
Total
$9.99
or pay with card
Secure checkout. Your payment details are processed safely.
By paying, you agree to the billing terms and usage limits.
Preparing payment…
Billing temporarily unavailable
API Reference
Base URL
https://ai0.us
Authentication
Authorization: Bearer YOUR_API_KEY
cURL example
curl -X POST [BASE]/api/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"default","messages":[{"role":"user","content":"Hello"}]}'Example request
{
"model": "default",
"messages": [
{ "role": "user", "content": "Hello" }
]
}Example response
{
"choices": [
{ "message": { "role": "assistant", "content": "Hi! How can I help?" } }
]
}