Nov
3
Mon
Virtual Design Conference 2026
3:51 PM – 11:43 AM
Austin, TX
199 attending
Teres incidunt amplus tribuo. Asper comburo vomito. Ocer vinitor caelum.
Overview
events / #62
3:51 PM – 11:43 AM
Austin, TX
199 attending
Teres incidunt amplus tribuo. Asper comburo vomito. Ocer vinitor caelum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/62" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/62" ); 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/62"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/62"
)
event = res.json() Response
{
"id": 62,
"title": "Virtual Design Conference 2026",
"slug": "virtual-design-conference-2026-62",
"description": "Teres incidunt amplus tribuo. Asper comburo vomito. Ocer vinitor caelum.",
"location": "Austin, TX",
"isOnline": false,
"startAt": "2025-11-03T15:51:02.536Z",
"endAt": "2025-11-05T11:43:18.269Z",
"organizerUserId": 244,
"attendeeCount": 199,
"createdAt": "2026-02-03T02:19:38.381Z",
"updatedAt": "2026-04-18T06:10:12.553Z"
}