May
8
Fri
Global Meetup 2026
5:27 PM – 8:35 AM
Online
945 attending
Capio suffragium volo sit depraedor taceo. Nulla explicabo porro clementia velociter terra. Alter demum vilis subvenio vapulus collum.
events / #32
5:27 PM – 8:35 AM
Online
945 attending
Capio suffragium volo sit depraedor taceo. Nulla explicabo porro clementia velociter terra. Alter demum vilis subvenio vapulus collum.
curl -sS \
"https://example-data.com/api/v1/events/32" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/32"
);
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/32"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/32"
)
event = res.json() {
"id": 32,
"title": "Global Meetup 2026",
"slug": "global-meetup-2026-32",
"description": "Capio suffragium volo sit depraedor taceo. Nulla explicabo porro clementia velociter terra. Alter demum vilis subvenio vapulus collum.",
"location": "Online",
"isOnline": true,
"startAt": "2026-05-08T17:27:35.225Z",
"endAt": "2026-05-09T08:35:09.303Z",
"organizerUserId": 147,
"attendeeCount": 945,
"createdAt": "2025-06-13T23:41:56.287Z",
"updatedAt": "2026-03-09T00:18:59.734Z"
}