Mar
14
Sat
Open Networking Event 2025
8:17 AM – 12:55 AM
Seattle, WA
42 attending
Trepide compono bellum alii. Acquiro tener corroboro amitto aspicio cuppedia. Possimus balbus nihil.
Overview
events / #137
8:17 AM – 12:55 AM
Seattle, WA
42 attending
Trepide compono bellum alii. Acquiro tener corroboro amitto aspicio cuppedia. Possimus balbus nihil.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/137" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/137" ); 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/137"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/137"
)
event = res.json() Response
{
"id": 137,
"title": "Open Networking Event 2025",
"slug": "open-networking-event-2025-137",
"description": "Trepide compono bellum alii. Acquiro tener corroboro amitto aspicio cuppedia. Possimus balbus nihil.",
"location": "Seattle, WA",
"isOnline": false,
"startAt": "2026-03-14T08:17:08.092Z",
"endAt": "2026-03-15T00:55:26.343Z",
"organizerUserId": 121,
"attendeeCount": 42,
"createdAt": "2026-03-31T18:22:39.533Z",
"updatedAt": "2026-05-06T16:06:08.963Z"
}