Oct
7
Wed
Premier Networking Event 2025
12:35 PM – 5:59 AM
Online
142 attending
Vado velit admoveo corpus tandem creator spiculum tam apostolus chirographum. Desolo subito aggero appositus. Altus terreo ustulo thema aggredior.
Overview
events / #17
12:35 PM – 5:59 AM
Online
142 attending
Vado velit admoveo corpus tandem creator spiculum tam apostolus chirographum. Desolo subito aggero appositus. Altus terreo ustulo thema aggredior.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/17" ); 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/17"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/17"
)
event = res.json() Response
{
"id": 17,
"title": "Premier Networking Event 2025",
"slug": "premier-networking-event-2025-17",
"description": "Vado velit admoveo corpus tandem creator spiculum tam apostolus chirographum. Desolo subito aggero appositus. Altus terreo ustulo thema aggredior.",
"location": "Online",
"isOnline": true,
"startAt": "2026-10-07T12:35:37.224Z",
"endAt": "2026-10-09T05:59:54.270Z",
"organizerUserId": 35,
"attendeeCount": 142,
"createdAt": "2025-08-13T01:32:02.193Z",
"updatedAt": "2026-05-01T23:20:01.273Z"
}