API
AI Bottlenecks publishes a versioned, CORS-enabled JSON API. The free tier is rate-limited to 100 requests per day per IP (not enforced at V1, but contractually documented and will be turned on when the Pro tier launches). All data is released under CC BY 4.0.
Endpoints
- GET
https://aibottlenecks.org/api/v1/regions.jsonRegion registry (live and coming-soon). - GET
https://aibottlenecks.org/api/v1/{region}/indicators.jsonPer-region indicators feed. Today:eu.
Tiers
| Tier | Rate limit | Auth | Cost |
|---|---|---|---|
| Free | 100 requests / day / IP (documentary at V1) | None | β¬0 |
| Pro | Unlimited (subject to fair-use) | API key (Q3 2026) | β¬29 / month β see pricing |
Response shape
{
"region": { "code": "eu", "name": "Europe" },
"meta": {
"lastUpdated": "2026-05-18",
"license": "CC BY 4.0",
"tier": "free",
"docs": "https://aibottlenecks.org/api-docs"
},
"indicators": [ /* β¦ */ ]
} Response headers
| Header | Value |
|---|---|
Content-Type | application/json |
Cache-Control | public, max-age=3600 |
Access-Control-Allow-Origin | * |
X-RateLimit-Tier | free |
X-RateLimit-Limit | 100 |
X-RateLimit-Window | 1d |
X-Docs | https://aibottlenecks.org/api-docs |