API Documentation
Access AIAGI.news intelligence data programmatically. Build dashboards, integrate with your systems, or power your own AGI monitoring tools.
1Authentication
All API requests require authentication via an API key. Include your key in the request header or as a query parameter.
Header (recommended)
Authorization: Bearer aigi_your_api_key_hereQuery Parameter
?api_key=aigi_your_api_key_hereGet an API key: Contact us at [email protected] to request API access.
2Base URL
https://aiagi.news/api/v13Endpoints
GET
/briefsList intelligence briefsQuery Parameters
limitNumber of results (default: 20, max: 100)offsetPagination offset (default: 0)categoryFilter by categoryimpactFilter by impact level: high, medium, lowsinceISO date string for filtering by dateExample Request
curl -H "Authorization: Bearer YOUR_KEY" \
"https://aiagi.news/api/v1/briefs?limit=10&impact=high"Response
{
"data": [
{
"id": "clx...",
"headline": "OpenAI announces GPT-5",
"signal": "Major capability advancement...",
"mechanism": "Improved architecture...",
"evidence": "Published benchmarks show...",
"impact_zone": "Global AI industry",
"category": "Frontier Models",
"origin_tag": "#USFrontier",
"confidence_score": "verified",
"impact_level": "high",
"source_language": "en",
"is_global_lead": false,
"published_at": "2026-03-07T10:00:00Z",
"source": {
"title": "OpenAI Blog: GPT-5",
"url": "https://openai.com/...",
"name": "OpenAI",
"published_at": "2026-03-07T09:00:00Z"
}
}
],
"meta": {
"total": 150,
"limit": 10,
"offset": 0,
"has_more": true
}
}GET
/momentumCompany momentum rankingsQuery Parameters
typeFilter by type: public, private, all (default)limitNumber of results (default: 50, max: 200)sortSort by: momentum, breakout, mentionsExample Request
curl -H "Authorization: Bearer YOUR_KEY" \
"https://aiagi.news/api/v1/momentum?type=private&sort=breakout"Response
{
"data": [
{
"rank": 1,
"id": "clx...",
"name": "Anthropic",
"slug": "anthropic",
"type": "private",
"ticker": null,
"sector": "AI Labs",
"headquarters": "San Francisco",
"website": "https://anthropic.com",
"metrics": {
"total_mentions": 1250,
"mentions_7d": 85,
"mentions_30d": 320,
"momentum_score": 92.5,
"breakout_score": 88.2
},
"badges": {
"verified": true,
"featured": true,
"has_profile": true
}
}
],
"meta": {
"total": 50,
"type": "private",
"sorted_by": "breakout"
}
}GET
/companies/:slugCompany detailsPath Parameters
slugCompany slug or normalized name (e.g., "anthropic")Example Request
curl -H "Authorization: Bearer YOUR_KEY" \
"https://aiagi.news/api/v1/companies/anthropic"4Pricing & Access Tiers
Starter
Custom
Ideal for individual developers
Business
Custom
For teams & startups
Enterprise
Custom
Unlimited access & support
All pricing is customized based on your use case.
Submit a request below and we'll respond within 24 hours with a tailored quote.
5Error Codes
| Status | Code | Description |
|---|---|---|
401 | UNAUTHORIZED | Missing or invalid API key |
404 | NOT_FOUND | Resource not found |
429 | RATE_LIMITED | Rate limit exceeded |
500 | SERVER_ERROR | Internal server error |
6Get Started
Request API Access
Submit your details and we'll respond within 24 hours with pricing tailored to your needs.