Events app
Eventbrite-style event discovery with schedules, RSVPs, and ticketing. 150 events with 1,300+ RSVPs and seeded ticket inventory.
Eventbrite-style event discovery with schedules, RSVPs, and ticketing. 150 events with 1,300+ RSVPs and seeded ticket inventory.
Click into any collection to see its schema, sample records, and API reference.
Fetch events in
the language of your choice.
curl example
curl -sS \
"https://example-data.com/api/v1/events?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/events?limit=25"
);
const { data, meta } = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/events.d.ts https://example-data.com/types/events.d.ts
import type { Event, ListEnvelope } from "./types/events";
const res = await fetch(
"https://example-data.com/api/v1/events?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Event>;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events",
params={"limit": 25},
)
data = res.json()