Aug
13
Thu
Summit Tech Talk 2025
2:11 AM – 8:37 PM
Portland, OR
49 attending
Delibero congregatio degenero velut. Veritatis asperiores armarium. Adversus audeo cicuta.
events / #50
2:11 AM – 8:37 PM
Portland, OR
49 attending
Delibero congregatio degenero velut. Veritatis asperiores armarium. Adversus audeo cicuta.
curl -sS \
"https://example-data.com/api/v1/events/50" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/50"
);
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/50"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/50"
)
event = res.json() {
"id": 50,
"title": "Summit Tech Talk 2025",
"slug": "summit-tech-talk-2025-50",
"description": "Delibero congregatio degenero velut. Veritatis asperiores armarium. Adversus audeo cicuta.",
"location": "Portland, OR",
"isOnline": false,
"startAt": "2026-08-13T02:11:00.720Z",
"endAt": "2026-08-14T20:37:28.672Z",
"organizerUserId": 116,
"attendeeCount": 49,
"createdAt": "2025-09-12T22:54:31.144Z",
"updatedAt": "2025-10-16T13:21:06.387Z"
}