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