Aug
5
Wed
Annual Tech Talk 2025
12:31 PM – 12:42 PM
Chicago, IL
32 attending
Tabernus rerum cornu cohaero campana dolores attonbitus tener aspernatur. Crastinus caecus versus arbustum speculum odit ascit inflammatio. Adeo sed cibo trado.
Overview
events / #13
12:31 PM – 12:42 PM
Chicago, IL
32 attending
Tabernus rerum cornu cohaero campana dolores attonbitus tener aspernatur. Crastinus caecus versus arbustum speculum odit ascit inflammatio. Adeo sed cibo trado.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/13" ); 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/13"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/13"
)
event = res.json() Response
{
"id": 13,
"title": "Annual Tech Talk 2025",
"slug": "annual-tech-talk-2025-13",
"description": "Tabernus rerum cornu cohaero campana dolores attonbitus tener aspernatur. Crastinus caecus versus arbustum speculum odit ascit inflammatio. Adeo sed cibo trado.",
"location": "Chicago, IL",
"isOnline": false,
"startAt": "2026-08-05T12:31:56.676Z",
"endAt": "2026-08-06T12:42:06.201Z",
"organizerUserId": 140,
"attendeeCount": 32,
"createdAt": "2025-06-17T14:38:46.606Z",
"updatedAt": "2026-02-05T12:49:14.424Z"
}