Skip to main content
AINative Studio
Products
Solutions
AI for BusinessNewFor DevelopersPricingDocs
Sign InBook a Call
94+ Models · 3-Day Trial · OpenAI-Compatible

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.

ModelProviderTypeInput (per 1M tokens)Output (per 1M tokens)
Llama 3.3 70BMetaOpen$0.22$0.45
Llama 4 ScoutMetaOpen$0.40$1.60
Gemma 4 31BGoogleOpen$0.22$0.45
Qwen3 32BAlibabaOpen$0.22$0.45
Mistral 3 14BMistral AIOpen$0.22$0.45
DeepSeek V3DeepSeekOpen$0.22$0.45
DeepSeek R1DeepSeekOpen$0.22$0.45
GPT OSS 120BOpenAI (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.

10M
Monthly tokens
Across all models combined
60 RPM
Requests per minute
Per API key
128K
Max context window
Depends on model
94+
Models available
All tiers included
10
Concurrent requests
Upgrade for more
3 days
Free trial
Then $5/mo (Hobbyist)

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.

Python

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)
JavaScript

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

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.

Hobbyist
$5/month
  • 10M tokens/month
  • 94+ models
  • 3-day trial, then $5/mo
  • Rate limit: 60 RPM
  • Community support
Start 3-day trial, then $5/mo
Most Popular
Pro
$29/month
  • 500M tokens/month
  • 94+ models
  • Priority routing
  • Rate limit: 600 RPM
  • Email support
Start Pro
Scale
$149/month
  • 5B tokens/month
  • 94+ models
  • Dedicated capacity
  • Rate limit: 3,000 RPM
  • SLA + priority support
Start Scale

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.

ModelAINativeOpenAI equiv.Anthropic equiv.
Llama 3.3 70B$0.22/MGPT-4o: $2.50/MSonnet 4.5: $3.00/M
Qwen3 32B$0.22/MGPT-4o-mini: $0.15/MN/A
DeepSeek R1$0.22/Mo3: $2.00/MN/A
Gemma 4 31B$0.22/MGPT-4o: $2.50/MSonnet 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.

For AI agents

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

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.

@ainative/sdk
npm install @ainative/sdk

Core TypeScript/JS SDK for the AINative API.

@ainative/react-sdk
npm install @ainative/react-sdk

React hooks and components for AINative apps.

@ainative/next-sdk
npm install @ainative/next-sdk

Next.js integration: streaming chat routes, auth middleware.

@ainative/ai-sdk-provider
npm install @ainative/ai-sdk-provider

Vercel AI SDK provider for AINative models.

zerodb-cli
npm install -g zerodb-cli

Command-line tool to provision and manage ZeroDB projects.

MCP servers

Wire AINative into any MCP-capable agent (Claude Code, Cursor, and more) with one command.

ainative-memory-mcp
npx ainative-memory-mcp

ZeroDB persistent memory: store, recall, and semantically search agent memory.

ainative-prd-mcp
npx ainative-prd-mcp

Generate and refine product requirement docs grounded in the live API catalog.

ainative-zerodb-memory-mcp
npx ainative-zerodb-memory-mcp

ZeroDB memory MCP server — direct access to store/recall/search tools from any MCP-capable agent.

ainative-zerodb-mcp-server
npx ainative-zerodb-mcp-server

Full 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.