Apr
11
Sat
Annual Meetup 2026
1:52 PM – 9:14 AM
Online
451 attending
Degusto calamitas patior. Volaticus terreo umerus cultura terror audeo. Timor laborum sol aspicio cibo depromo bibo.
Overview
events / #48
1:52 PM – 9:14 AM
Online
451 attending
Degusto calamitas patior. Volaticus terreo umerus cultura terror audeo. Timor laborum sol aspicio cibo depromo bibo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/48" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/48" ); 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/48"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/48"
)
event = res.json() Response
{
"id": 48,
"title": "Annual Meetup 2026",
"slug": "annual-meetup-2026-48",
"description": "Degusto calamitas patior. Volaticus terreo umerus cultura terror audeo. Timor laborum sol aspicio cibo depromo bibo.",
"location": "Online",
"isOnline": true,
"startAt": "2026-04-11T13:52:41.306Z",
"endAt": "2026-04-13T09:14:26.905Z",
"organizerUserId": 223,
"attendeeCount": 451,
"createdAt": "2025-06-28T04:16:34.963Z",
"updatedAt": "2026-05-03T13:48:33.900Z"
}