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_here

Query Parameter

?api_key=aigi_your_api_key_here
Get an API key: Contact us at [email protected] to request API access.

2Base URL

https://aiagi.news/api/v1

3Endpoints

GET/briefsList intelligence briefs

Query Parameters

limitNumber of results (default: 20, max: 100)
offsetPagination offset (default: 0)
categoryFilter by category
impactFilter by impact level: high, medium, low
sinceISO date string for filtering by date

Example 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 rankings

Query Parameters

typeFilter by type: public, private, all (default)
limitNumber of results (default: 50, max: 200)
sortSort by: momentum, breakout, mentions

Example 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 details

Path 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

StatusCodeDescription
401UNAUTHORIZEDMissing or invalid API key
404NOT_FOUNDResource not found
429RATE_LIMITEDRate limit exceeded
500SERVER_ERRORInternal server error

6Get Started

Request API Access

Submit your details and we'll respond within 24 hours with pricing tailored to your needs.