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.
Overview
events / #50
2:11 AM – 8:37 PM
Portland, OR
49 attending
Delibero congregatio degenero velut. Veritatis asperiores armarium. Adversus audeo cicuta.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/50" ); 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/50"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/50"
)
event = res.json() Response
{
"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"
}