Jun
3
Wed
Local Design Conference 2026
9:18 AM – 7:17 AM
Boston, MA
74 attending
Corporis id crastinus utrimque asperiores ullam sodalitas subvenio deripio. Damno alii virga sperno. Alienus arca solum.
Overview
events / #112
9:18 AM – 7:17 AM
Boston, MA
74 attending
Corporis id crastinus utrimque asperiores ullam sodalitas subvenio deripio. Damno alii virga sperno. Alienus arca solum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/112" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/112" ); 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/112"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/112"
)
event = res.json() Response
{
"id": 112,
"title": "Local Design Conference 2026",
"slug": "local-design-conference-2026-112",
"description": "Corporis id crastinus utrimque asperiores ullam sodalitas subvenio deripio. Damno alii virga sperno. Alienus arca solum.",
"location": "Boston, MA",
"isOnline": false,
"startAt": "2026-06-03T09:18:32.121Z",
"endAt": "2026-06-05T07:17:35.255Z",
"organizerUserId": 155,
"attendeeCount": 74,
"createdAt": "2026-02-09T23:23:47.425Z",
"updatedAt": "2026-03-13T07:13:25.298Z"
}