Feb
17
Tue
Open Design Conference 2026
11:19 AM – 3:40 PM
Denver, CO
38 attending
Ex subvenio varius. Arx fuga ventus crepusculum brevis. Sub theca thesis.
Overview
events / #18
11:19 AM – 3:40 PM
Denver, CO
38 attending
Ex subvenio varius. Arx fuga ventus crepusculum brevis. Sub theca thesis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/18" ); 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/18"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/18"
)
event = res.json() Response
{
"id": 18,
"title": "Open Design Conference 2026",
"slug": "open-design-conference-2026-18",
"description": "Ex subvenio varius. Arx fuga ventus crepusculum brevis. Sub theca thesis.",
"location": "Denver, CO",
"isOnline": false,
"startAt": "2026-02-17T11:19:23.804Z",
"endAt": "2026-02-18T15:40:17.844Z",
"organizerUserId": 239,
"attendeeCount": 38,
"createdAt": "2026-01-10T14:18:20.505Z",
"updatedAt": "2026-03-01T03:03:14.275Z"
}