Create an account
Use the web signup flow for the fastest path. Your API key is returned immediately, the session is created for you, and the welcome email includes the same quickstart links.
BrainAPI is built for fast activation. Create an account, get an API key instantly, call the unified endpoint, and use these guides if you are building chatbots, agents, or context-heavy workflows.
Use the web signup flow for the fastest path. Your API key is returned immediately, the session is created for you, and the welcome email includes the same quickstart links.
The key is shown right after signup and also stored in your dashboard session. Copy it once and keep it in your app secrets manager.
X-API-KeyUse POST /api/v1/ai when you want one request format across text, image, and audio workflows.
curl -X POST https://api.brainapi.site/api/v1/ai \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"type": "text",
"input": "Write a welcome message for a returning SaaS user.",
"mode": "auto"
}'
You always get the same response shape back regardless of provider routing.
{
"success": true,
"output": "Welcome back. Here is a concise summary of your account activity.",
"provider": "openai",
"tokens_used": 126,
"cost_estimate": 0.00042,
"model": "gpt-4.1-mini",
"latency_ms": 620,
"fallback_used": false
}
| Endpoint | Use case |
|---|---|
/api/v1/text/generate | Text generation |
/api/v1/image/generate | Image generation |
/api/v1/speech/transcribe | Audio transcription |
/api/v1/automation/run | Simple workflow execution |
Use these pages when you need implementation help beyond the base quickstart.
| /chatbot-memory-api | Commercial landing page for memory-aware chatbot positioning |
| /memory-api-for-ai-agents | Agent workflow and routing architecture |
| /blog/store-ai-context-nodejs | Node.js implementation pattern |
Prospects should not have to guess whether the product is maintained. BrainAPI exposes a public status page and a working support inbox.