CorporateAIAU Index
v1 · Free · No auth required

AEAI Public API

Free JSON API for AEAI scores, industry rankings, and signal data. All endpoints are publicly accessible — no API key required. Responses are cached for 1 hour ( s-maxage=3600).

Base URL

https://corporateai.com.au
GET/api/v1/index

National composite score for the latest quarter, including per-dimension scores and maturity stage.

Example response

{
  "data": {
    "quarter": "Q2-2026",
    "overall_score": 61.4,
    "adoption": 68.2,
    "governance": 54.1,
    "investment": 72.3,
    "incidents": 49.8,
    "stage": "Maturing"
  },
  "meta": { "version": "v1", "quarter": "Q2-2026" }
}
GET/api/v1/industries

All 6 industry scores for a given quarter, sorted by composite score descending.

Parameters

quarterdefault: Q2-2026Quarter slug e.g. Q2-2026

Example response

{
  "data": [
    { "industry": "banking", "overall_score": 67.8, "stage": "Maturing", ... },
    { "industry": "insurance", "overall_score": 63.2, "stage": "Maturing", ... }
  ],
  "meta": { "version": "v1", "quarter": "Q2-2026" }
}
GET/api/v1/industry/:slug

Single industry with composite score, dimension breakdown, maturity stage, and 4-quarter trend.

Parameters

slugdefault: requiredbanking | insurance | government | retail | healthcare | utilities

Example response

{
  "data": {
    "industry": "banking",
    "scores": { "overall": 67.8, "adoption": 74.5, ... },
    "stage": "Maturing",
    "trend": [
      { "quarter": "Q3-2025", "overall": 57.1 },
      { "quarter": "Q2-2026", "overall": 67.8 }
    ]
  }
}
GET/api/v1/signals

Filtered signal feed. Returns up to 50 signals (default 20) ordered by magnitude.

Parameters

industrydefault: allFilter by industry slug
dimensiondefault: alladoption | governance | investment | incidents
quarterdefault: Q2-2026Quarter slug
limitdefault: 20Max 50

Example response

{
  "data": [
    {
      "headline": "Commonwealth Bank deploys real-time AI fraud detection...",
      "source": "CBA Annual Technology Report",
      "tier": 1,
      "dimension": "adoption",
      "industry": "banking",
      "sentiment": "positive",
      "url": null,
      "date": "May 2026"
    }
  ],
  "meta": { "version": "v1", "count": 1 }
}

Data is updated quarterly. For questions or to report data issues, use the contact form. Please attribute any published use as: "Source: Australian Enterprise AI Index (AEAI), corporateai.com.au".