Skip to main content
AI Buzz logo

API Documentation

Programmatic access to AI company data, DMI scores, and developer adoption metrics.

Authentication

API requests can be made with or without authentication. Authenticated requests get higher rate limits.

Authorization: Bearer aib_your_api_key_here

Or use the x-api-key header. Get an API key from your dashboard.

Rate Limits

50
Anonymous/day
100
Free tier/day
1,000
Pro tier/day
10,000
API tier/day

Rate limits reset at midnight UTC. Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset.

Endpoints

Companies

GET /api/v1/companies

List all companies with metrics.

GET /api/v1/companies/[slug]

Get a single company profile. Optional: ?include={"company_funding_rounds":true}&include_trends=true

Funding Rounds

GET /api/v1/funding-rounds

List up to 1,000 funding rounds across all companies, ordered by year descending.

GET /api/v1/companies/[slug]/funding-rounds

Get funding rounds for a specific company.

Data Export

GET /api/v1/export/companies

Export company data as CSV or JSON. Params: format, fields, primary_domain, min_signal_score, limit.

Badges

GET /api/v1/badge/[slug]

SVG badge with DMI score. Params: style=flat|flat-square, theme=light|dark.

Insights

GET /api/v1/insights/company/[slug]/history

Historical metrics for a company. Free: 30 days. Pro: 365 days.

Response Format

All endpoints return JSON. Successful responses wrap data in a data key.

GET /api/v1/companies/hugging-face

{
  "data": {
    "id": 42,
    "name": "Hugging Face",
    "slug": "hugging-face",
    "website": "huggingface.co",
    "description": "The AI community building the future.",
    "founding_date_year": 2016,
    "status": "active",
    "github_repo": "huggingface/transformers",
    "github_stars": 138200,
    "github_forks": 27500,
    "npm_downloads_30d": 4820000,
    "pypi_downloads_30d": 9100000,
    "signal_score": 91,
    "signal_rank": 3,
    "primary_domains": ["model-hub", "nlp"],
    "company_funding_rounds": [
      {
        "id": 7,
        "funding_year": 2023,
        "funding_amt": "235000000",
        "currency": "USD",
        "funding_type": { "name": "Series D", "slug": "series-d" },
        "investor_slugs": [
          { "name": "Salesforce Ventures", "slug": "salesforce-ventures" }
        ]
      }
    ]
  },
  "status": 200
}

Error Codes

401 UnauthorizedInvalid or missing API key
{ "error": "Invalid API key.", "status": 401 }
404 Not FoundCompany slug does not exist
{ "error": "Company not found.", "status": 404 }
429 Too Many RequestsRate limit exceeded
{ "error": "Rate limit exceeded. Resets at midnight UTC.", "status": 429 }

Example Request

curl -H "Authorization: Bearer aib_your_key" \
  https://www.ai-buzz.com/api/v1/companies/open-ai

Get Started

Create an API key and start building with AI-Buzz data.