Jun
20
Sat
Local Design Conference 2026
3:56 AM – 12:20 AM
Online
246 attending
Corrigo comburo sublime cupiditate. Tracto termes traho adipiscor cibo vero. Tergeo usus necessitatibus torrens comprehendo.
events / #31
3:56 AM – 12:20 AM
Online
246 attending
Corrigo comburo sublime cupiditate. Tracto termes traho adipiscor cibo vero. Tergeo usus necessitatibus torrens comprehendo.
curl -sS \
"https://example-data.com/api/v1/events/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/31"
);
const event = await res.json();import type { Event } from "https://example-data.com/types/events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/events/31"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/31"
)
event = res.json() {
"id": 31,
"title": "Local Design Conference 2026",
"slug": "local-design-conference-2026-31",
"description": "Corrigo comburo sublime cupiditate. Tracto termes traho adipiscor cibo vero. Tergeo usus necessitatibus torrens comprehendo.",
"location": "Online",
"isOnline": true,
"startAt": "2026-06-20T03:56:57.961Z",
"endAt": "2026-06-21T00:20:23.304Z",
"organizerUserId": 98,
"attendeeCount": 246,
"createdAt": "2025-12-28T09:18:08.520Z",
"updatedAt": "2026-01-17T19:47:17.251Z"
}