Sep
27
Sat
Community Meetup 2025
3:59 PM – 4:38 AM
Chicago, IL
22 attending
Ter bos thema strues. Apto absque theatrum carcer quas nulla cubo vobis pecco. Aetas arguo sponte conforto alias.
Overview
events / #65
3:59 PM – 4:38 AM
Chicago, IL
22 attending
Ter bos thema strues. Apto absque theatrum carcer quas nulla cubo vobis pecco. Aetas arguo sponte conforto alias.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/65" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/65" ); const event = 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 } from "./types/events";
const res = await fetch(
"https://example-data.com/api/v1/events/65"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/65"
)
event = res.json() Response
{
"id": 65,
"title": "Community Meetup 2025",
"slug": "community-meetup-2025-65",
"description": "Ter bos thema strues. Apto absque theatrum carcer quas nulla cubo vobis pecco. Aetas arguo sponte conforto alias.",
"location": "Chicago, IL",
"isOnline": false,
"startAt": "2025-09-27T15:59:37.708Z",
"endAt": "2025-09-28T04:38:24.750Z",
"organizerUserId": 88,
"attendeeCount": 22,
"createdAt": "2025-12-11T23:48:20.613Z",
"updatedAt": "2026-02-16T20:58:06.705Z"
}