Data API

A public, read-only JSON API over the AISafety.com directories. Pull live communities, events, organizations, jobs, funding and more into your own site or tool, with no API key and no database to maintain.

OpenAPI specAPI indexCC-BY-4.0

Base URLhttps://aisafety.com/api/v1

Quick start

Every endpoint is a plain GET that returns JSON. No auth; CORS is open to any origin.

// Upcoming events in Europe. No API key, no database needed.
const res = await fetch(
  'https://aisafety.com/api/v1/events?location=Europe'
)
const { data, meta } = await res.json()
console.log(data.length, 'events ·', meta.license)

Endpoints

Eleven collections. Click any card to open its live JSON.

Response shape

Every endpoint returns the same wrapped envelope: a data array and a meta object with the record count, license, and attribution. IDs are stable Airtable record IDs, image fields are absolute URLs, and dates are ISO-8601.

{
  "data": [
    {
      "id": "rec...",
      "name": "...",
      "type": "Conference",
      "location": "Europe",
      "startDate": "2026-07-01",
      "applicationsClose": "2026-06-20",
      "url": "https://..."
    }
  ],
  "meta": {
    "count": 1,
    "license": "CC-BY-4.0",
    "attribution": "AISafety.com",
    "source": "https://aisafety.com",
    "generatedAt": "2026-06-16T00:00:00.000Z"
  }
}

Filtering & search

License & attribution

Data is licensed Creative Commons Attribution 4.0 (CC-BY-4.0). Use it for any purpose, including commercially, as long as you credit AISafety.com with a link back to aisafety.com. Organization logos remain the property of their respective owners.