Feb
26
Thu
Global Meetup 2025
9:54 AM – 8:05 AM
Denver, CO
410 attending
Aeneus callide sunt abutor colo ventus. Subvenio pariatur cubo talis venio clamo totam tenus arto textor. Odit acidus approbo clibanus asper amicitia casus summa.
events / #95
9:54 AM – 8:05 AM
Denver, CO
410 attending
Aeneus callide sunt abutor colo ventus. Subvenio pariatur cubo talis venio clamo totam tenus arto textor. Odit acidus approbo clibanus asper amicitia casus summa.
curl -sS \
"https://example-data.com/api/v1/events/95" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/95"
);
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/95"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/95"
)
event = res.json() {
"id": 95,
"title": "Global Meetup 2025",
"slug": "global-meetup-2025-95",
"description": "Aeneus callide sunt abutor colo ventus. Subvenio pariatur cubo talis venio clamo totam tenus arto textor. Odit acidus approbo clibanus asper amicitia casus summa.",
"location": "Denver, CO",
"isOnline": false,
"startAt": "2026-02-26T09:54:18.306Z",
"endAt": "2026-02-27T08:05:12.687Z",
"organizerUserId": 187,
"attendeeCount": 410,
"createdAt": "2025-07-09T05:56:32.745Z",
"updatedAt": "2026-05-07T22:33:03.430Z"
}