Mar
1
Mon
Premier Tech Talk 2025
12:20 AM – 9:01 AM
Los Angeles, CA
614 attending
Tamquam deleniti suffoco. Autem tracto cunae defaeco suus attero tabula. Optio canto certus torqueo.
events / #19
12:20 AM – 9:01 AM
Los Angeles, CA
614 attending
Tamquam deleniti suffoco. Autem tracto cunae defaeco suus attero tabula. Optio canto certus torqueo.
curl -sS \
"https://example-data.com/api/v1/events/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/19"
);
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/19"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/19"
)
event = res.json() {
"id": 19,
"title": "Premier Tech Talk 2025",
"slug": "premier-tech-talk-2025-19",
"description": "Tamquam deleniti suffoco. Autem tracto cunae defaeco suus attero tabula. Optio canto certus torqueo.",
"location": "Los Angeles, CA",
"isOnline": false,
"startAt": "2027-03-01T00:20:11.048Z",
"endAt": "2027-03-02T09:01:47.549Z",
"organizerUserId": 42,
"attendeeCount": 614,
"createdAt": "2025-06-15T07:14:04.418Z",
"updatedAt": "2025-09-29T09:46:19.493Z"
}