Jul
8
Tue
Open Demo Day 2026
2:26 AM – 8:55 AM
San Francisco, CA
955 attending
Eos brevis qui tubineus thesis velit recusandae ager. Amplexus celer spiritus arcesso verus cavus. Arcus depromo solutio.
events / #71
2:26 AM – 8:55 AM
San Francisco, CA
955 attending
Eos brevis qui tubineus thesis velit recusandae ager. Amplexus celer spiritus arcesso verus cavus. Arcus depromo solutio.
curl -sS \
"https://example-data.com/api/v1/events/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/71"
);
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/71"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/71"
)
event = res.json() {
"id": 71,
"title": "Open Demo Day 2026",
"slug": "open-demo-day-2026-71",
"description": "Eos brevis qui tubineus thesis velit recusandae ager. Amplexus celer spiritus arcesso verus cavus. Arcus depromo solutio.",
"location": "San Francisco, CA",
"isOnline": false,
"startAt": "2025-07-08T02:26:54.771Z",
"endAt": "2025-07-08T08:55:17.967Z",
"organizerUserId": 223,
"attendeeCount": 955,
"createdAt": "2026-02-11T21:57:42.170Z",
"updatedAt": "2026-05-19T14:43:26.914Z"
}