Aug
5
Wed
Virtual Networking Event 2025
6:58 AM – 1:50 PM
Chicago, IL
527 attending
Thymbra bos conor triumphus nobis angulus aestus. Tot tantum curriculum. Demum dolore clarus somniculosus tamisium sed defleo termes.
Overview
events / #73
6:58 AM – 1:50 PM
Chicago, IL
527 attending
Thymbra bos conor triumphus nobis angulus aestus. Tot tantum curriculum. Demum dolore clarus somniculosus tamisium sed defleo termes.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/73" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/73" ); 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/73"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/73"
)
event = res.json() Response
{
"id": 73,
"title": "Virtual Networking Event 2025",
"slug": "virtual-networking-event-2025-73",
"description": "Thymbra bos conor triumphus nobis angulus aestus. Tot tantum curriculum. Demum dolore clarus somniculosus tamisium sed defleo termes.",
"location": "Chicago, IL",
"isOnline": false,
"startAt": "2026-08-05T06:58:52.811Z",
"endAt": "2026-08-06T13:50:00.333Z",
"organizerUserId": 14,
"attendeeCount": 527,
"createdAt": "2025-07-01T22:25:05.436Z",
"updatedAt": "2026-03-11T16:53:21.083Z"
}