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.
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.
curl -sS \
"https://example-data.com/api/v1/events/137" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/137"
);
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/137"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/137"
)
event = res.json() {
"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"
}