Base URLhttps://aisafety.com/api/v1
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)Eleven collections. Click any card to open its live JSON.
/api/v1/communitiesAI safety communities, groups, and meetups.
GET/api/v1/organizationsOrganizations on the AI safety landscape map.
GET/api/v1/eventsConferences, hackathons, meetups, and other AI safety events.
GET/api/v1/trainingFellowships, courses, and bootcamps in AI safety.
GET/api/v1/jobsOpen roles in AI safety.
GET/api/v1/fundingFunders and grant programs for AI safety work.
GET/api/v1/coursesSelf-study courses and learning materials.
GET/api/v1/advisorsPeople offering AI safety career and research advice.
GET/api/v1/media-channelsPodcasts, newsletters, blogs, and video channels.
GET/api/v1/founder-resourcesResources for founders of AI safety projects.
GET/api/v1/projectsVolunteer and collaboration opportunities.
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"
}
}?type=ConferenceFilter by any listed field. Case-insensitive substring.?location=Europe,UKComma-separate values for OR.?location=Europe&type=ConferenceCombine different fields for AND.?q=alignmentFree-text search across all fields.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.