Sep
27
Sun
Annual Meetup 2026
12:49 PM – 5:15 AM
Chicago, IL
919 attending
Talio aperiam audentia absque ab. Dolor sub teres. Absque alius cunae ciminatio truculenter torrens.
events / #45
12:49 PM – 5:15 AM
Chicago, IL
919 attending
Talio aperiam audentia absque ab. Dolor sub teres. Absque alius cunae ciminatio truculenter torrens.
curl -sS \
"https://example-data.com/api/v1/events/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/45"
);
const event = await res.json();import type { Event } from "https://example-data.com/types/events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/events/45"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/45"
)
event = res.json() {
"id": 45,
"title": "Annual Meetup 2026",
"slug": "annual-meetup-2026-45",
"description": "Talio aperiam audentia absque ab. Dolor sub teres. Absque alius cunae ciminatio truculenter torrens.",
"location": "Chicago, IL",
"isOnline": false,
"startAt": "2026-09-27T12:49:38.643Z",
"endAt": "2026-09-28T05:15:39.959Z",
"organizerUserId": 155,
"attendeeCount": 919,
"createdAt": "2025-05-25T12:41:53.206Z",
"updatedAt": "2025-12-08T07:23:20.846Z"
}