Mar
30
Tue
Summit Launch Party 2025
1:04 AM – 6:58 AM
Online
848 attending
Verus bardus auditor timor soleo vox videlicet ad conicio volubilis. Minus asperiores talio. Exercitationem sonitus cohibeo stillicidium.
Overview
events / #91
1:04 AM – 6:58 AM
Online
848 attending
Verus bardus auditor timor soleo vox videlicet ad conicio volubilis. Minus asperiores talio. Exercitationem sonitus cohibeo stillicidium.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/91" ); 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/91"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/91"
)
event = res.json() Response
{
"id": 91,
"title": "Summit Launch Party 2025",
"slug": "summit-launch-party-2025-91",
"description": "Verus bardus auditor timor soleo vox videlicet ad conicio volubilis. Minus asperiores talio. Exercitationem sonitus cohibeo stillicidium.",
"location": "Online",
"isOnline": true,
"startAt": "2027-03-30T01:04:02.378Z",
"endAt": "2027-03-30T06:58:53.723Z",
"organizerUserId": 124,
"attendeeCount": 848,
"createdAt": "2025-11-01T12:04:45.381Z",
"updatedAt": "2025-11-06T15:30:23.383Z"
}