FlintAPI — Smart Routing for AI
Smart model selection based on your request. flint-smart decomposes complex queries into sub-tasks. No model selection needed.
What is FlintAPI?
FlintAPI is a Smart Routing engine — not a model aggregator. When you send a prompt, FlintAPI's router decomposes it into sub-tasks, dispatches each to the best-suited model, and returns the combined result. You never need to pick a model. One API call, optimal results.
How to Use
1. Register
Go to flintapi.ai/register — instant $5 free credit, no card required.
2. Get your API Key
Dashboard → Settings → Create Key.
3. Make your first call
curl https://flintapi.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "flint-smart",
"messages": [{"role": "user", "content": "Explain quantum computing in one sentence."}]
}'
Python (OpenAI SDK compatible):
from openai import OpenAI
client = OpenAI(
base_url="https://flintapi.ai/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="flint-smart",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
Supported Models
The Smart Router automatically selects from these models based on your prompt:
| Model |
Provider |
Context |
Best For |
| deepseek-v4-pro | DeepSeek | 128K | Reasoning & code |
| deepseek-v4-flash | DeepSeek | 128K | Fast, cost-effective |
| qwen3.7-max | Qwen | 128K | Flagship all-rounder |
| qwen3.7-plus | Qwen | 128K | Balanced Chinese-English |
| kimi-k2.6 | Kimi | 256K | Long context |
| glm-5.1 | GLM | 32K | Bilingual expert |
| MiniMax-M2.7 | MiniMax | 512K | Creative writing |
Why FlintAPI?
- Smart Routing — Decompose & Dispatch: one prompt automatically routed to optimal models
- No Model Selection — Use
"model": "flint-smart" and let the router decide
- OpenAI-Compatible — Drop-in replacement: change base_url and keep your existing code
- Pay-as-you-go — Per-token billing, usage dashboard, $5 free to start
- Multi-SDK — cURL, Python, Node.js, Go
📖 API Docs |
💰 Pricing |
🚀 Get Started Free