Mar
29
Sun
Community Networking Event 2026
4:21 PM – 10:06 PM
Miami, FL
802 attending
Blandior conventus temptatio talio usus antiquus. Vester tactus summopere. Decor decretum dicta conspergo substantia suggero campana.
events / #29
4:21 PM – 10:06 PM
Miami, FL
802 attending
Blandior conventus temptatio talio usus antiquus. Vester tactus summopere. Decor decretum dicta conspergo substantia suggero campana.
curl -sS \
"https://example-data.com/api/v1/events/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/events/29"
);
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/29"
);
const event = (await res.json()) as Event;import requests
res = requests.get(
"https://example-data.com/api/v1/events/29"
)
event = res.json() {
"id": 29,
"title": "Community Networking Event 2026",
"slug": "community-networking-event-2026-29",
"description": "Blandior conventus temptatio talio usus antiquus. Vester tactus summopere. Decor decretum dicta conspergo substantia suggero campana.",
"location": "Miami, FL",
"isOnline": false,
"startAt": "2026-03-29T16:21:20.669Z",
"endAt": "2026-03-29T22:06:19.878Z",
"organizerUserId": 130,
"attendeeCount": 802,
"createdAt": "2025-12-31T14:44:29.395Z",
"updatedAt": "2026-01-22T23:09:30.929Z"
}