LLM API — Access 94+ AI Models from $5/mo
One API key. 94+ models including Llama 3, Mistral, Gemma, Qwen, DeepSeek, and more. OpenAI-compatible endpoints, streaming support, and 10M tokens/month — start free with a 3-day trial, then $5/mo (Hobbyist).
Supported Models
Access the world's leading open-source and frontier models through a single OpenAI-compatible API. All models available from the $5/mo Hobbyist plan.
| Model | Provider | Type | Input (per 1M tokens) | Output (per 1M tokens) |
|---|---|---|---|---|
| Llama 3.3 70B | Meta | Open | $0.22 | $0.45 |
| Llama 4 Scout | Meta | Open | $0.40 | $1.60 |
| Gemma 4 31B | Open | $0.22 | $0.45 | |
| Qwen3 32B | Alibaba | Open | $0.22 | $0.45 |
| Mistral 3 14B | Mistral AI | Open | $0.22 | $0.45 |
| DeepSeek V3 | DeepSeek | Open | $0.22 | $0.45 |
| DeepSeek R1 | DeepSeek | Open | $0.22 | $0.45 |
| GPT OSS 120B | OpenAI (open) | Open | $0.70 | $1.50 |
Showing 8 of 94+ available models. Browse all models
Hobbyist Plan Limits
The $5/mo Hobbyist plan is designed to cover prototyping, personal projects, and small-scale applications. 3-day trial, then $5/mo — your allocation renews every month.
Code Examples
The AINative API is fully OpenAI-compatible. If you already use the OpenAI SDK, just change the base URL and model name. For direct HTTP calls, authenticate with theX-API-Keyheader. Both /v1and /api/v1prefixes work and serve the same model catalog.
OpenAI SDK (drop-in replacement)
from openai import OpenAI
client = OpenAI(
api_key="ain_...", # Your AINative API key
base_url="https://api.ainative.studio/v1",
)
response = client.chat.completions.create(
model="meta/llama-3.3-70b-instruct",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Explain quantum entanglement simply."},
],
max_tokens=512,
)
print(response.choices[0].message.content)Node.js / TypeScript
import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'ain_...',
baseURL: 'https://api.ainative.studio/v1',
});
const response = await client.chat.completions.create({
model: 'mistralai/mistral-7b-instruct',
messages: [
{ role: 'user', content: 'What are the best practices for API design?' },
],
stream: true,
});
for await (const chunk of response) {
process.stdout.write(chunk.choices[0]?.delta?.content ?? '');
}curl — direct API call
# Direct API calls authenticate with the X-API-Key header.
# Both /v1 and /api/v1 prefixes work (same catalog).
curl https://api.ainative.studio/api/v1/chat/completions \
-H "X-API-Key: ain_..." \
-H "Content-Type: application/json" \
-d '{
"model": "kimi-k2",
"messages": [
{"role": "user", "content": "Write a Python function to reverse a string."}
],
"max_tokens": 256
}'Pricing Tiers
Start with a 3-day trial, then $5/mo, then pay as you grow from $5/mo. All plans include the full model catalog. Token usage is billed at per-model rates shown in the model table above.
- ✓10M tokens/month
- ✓94+ models
- ✓3-day trial, then $5/mo
- ✓Rate limit: 60 RPM
- ✓Community support
- ✓500M tokens/month
- ✓94+ models
- ✓Priority routing
- ✓Rate limit: 600 RPM
- ✓Email support
- ✓5B tokens/month
- ✓94+ models
- ✓Dedicated capacity
- ✓Rate limit: 3,000 RPM
- ✓SLA + priority support
AINative vs OpenAI vs Anthropic Pricing
Open-source models on AINative are 10–25x cheaper than comparable closed-source alternatives. For many workloads, Llama 3.3 70B matches or exceeds GPT-4o quality at a fraction of the cost.
| Model | AINative | OpenAI equiv. | Anthropic equiv. |
|---|---|---|---|
| Llama 3.3 70B | $0.22/M | GPT-4o: $2.50/M | Sonnet 4.5: $3.00/M |
| Qwen3 32B | $0.22/M | GPT-4o-mini: $0.15/M | N/A |
| DeepSeek R1 | $0.22/M | o3: $2.00/M | N/A |
| Gemma 4 31B | $0.22/M | GPT-4o: $2.50/M | Sonnet 4.5: $3.00/M |
Prices shown are per 1M input tokens. Output tokens are billed separately. OpenAI and Anthropic prices as of 2026-06.
Integrate programmatically
AINative is agent-native. Every surface below is machine-readable so an autonomous agent can discover, authenticate, and start building with zero human handoff. Authenticate with the X-API-Key header. Both the /v1 and /api/v1 prefixes serve the same catalog.
Machine-readable surfaces
/llms.txtConcise, agent-readable index of the platform, endpoints, and docs.
/agent.mdAgent onboarding guide: auth, capabilities, and how to operate autonomously.
/openapi.jsonFull OpenAPI 3 specification for every REST endpoint.
/.well-known/ai-plugin.jsonChatGPT / plugin manifest describing the API for tool use.
/.well-known/mcp.jsonModel Context Protocol descriptor for MCP-capable agents.
Zero-auth on-ramp
Provision a working database with a single unauthenticated request — no signup, no key. Perfect for an agent that needs storage in the first second.
curl -X POST https://api.ainative.studio/api/v1/public/instant-db \
-H "Content-Type: application/json" \
-d '{}'SDKs and CLI
Skip hand-rolling HTTP calls — install a typed client for your stack.
npm install @ainative/next-sdkNext.js integration: streaming chat routes, auth middleware.
npm install @ainative/ai-sdk-providerVercel AI SDK provider for AINative models.
MCP servers
Wire AINative into any MCP-capable agent (Claude Code, Cursor, and more) with one command.
npx ainative-memory-mcpZeroDB persistent memory: store, recall, and semantically search agent memory.
npx ainative-prd-mcpGenerate and refine product requirement docs grounded in the live API catalog.
npx ainative-zerodb-memory-mcpZeroDB memory MCP server — direct access to store/recall/search tools from any MCP-capable agent.
npx ainative-zerodb-mcp-serverFull ZeroDB MCP server: vectors, tables, files, and event streams as agent-callable tools.
Frequently Asked Questions
How much does the AINative LLM API cost?
You can start free with a 3-day trial, then it is $5/mo (Hobbyist) with 10M tokens per month. Higher-volume paid plans are available with lower per-token pricing.
Which LLM models are available on the Hobbyist plan?
All 94+ models are available on the $5/mo Hobbyist plan, including Llama 3.3/4, Mistral 3, Gemma 4, Qwen3, DeepSeek V3/R1, GPT OSS, and many more.
Is the AINative API compatible with the OpenAI SDK?
Yes. The AINative API follows the OpenAI chat completions format (/api/v1/chat/completions). You can use the official OpenAI Python or JavaScript SDK by setting base_url to https://api.ainative.studio/api/v1.
How does AINative pricing compare to OpenAI?
AINative is 10–25x cheaper for open-source models. Llama 3.3 70B runs at $0.22/M input tokens vs GPT-4o at $2.50/M. 3-day trial, then $5/mo (Hobbyist) with 10M tokens/month.
How do I get started?
You can sign up and get a working API key with just an email address. Start a 3-day trial, then $5/mo, then continue on the Hobbyist plan for $5/mo.
Get your API key in 30 seconds
3-day trial, then $5/mo. No sales call. 94+ models. 10M tokens every month, from $5/mo.