Developers
Brainpercent API
Programmatically generate articles, social media content, and manage your SEO projects.
Base URL
https://brainpercent.app/api/v1Features
- Article Generation — Generate SEO-optimized articles with AI
- Social Media — Create and publish social content across platforms
- Project Management — Organize content into projects
- Credit System — Track usage and manage credits via API
Response Format
All responses follow a consistent JSON structure:
200Success response
{
"success": true,
"data": {
"id": "uuid",
"title": "Example Article"
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2026-02-01T00:00:00Z"
}
}401Error response
{
"success": false,
"error": {
"code": "UNAUTHORIZED",
"message": "Missing or invalid Authorization header"
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2026-02-01T00:00:00Z"
}
}Rate Limits
| Plan | Requests/Min | Requests/Day |
|---|---|---|
| Free | 100 | 5,000 |
| Pro | 1,000 | 50,000 |
| Enterprise | 10,000 | Unlimited |
Rate limits are enforced per API key. When you exceed the limit, requests return HTTP 429 with a Retry-After header indicating how many seconds to wait.