example-data.com

events / #53

Sep
29
Mon

Local Meetup 2026

5:03 AM – 4:06 PM

Chicago, IL

520 attending

Antiquus patior cui desidero. Angustus dapifer animi uterque argumentum voco sono saepe. Tenus depono vero.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/53"
)
event = res.json()
{
  "id": 53,
  "title": "Local Meetup 2026",
  "slug": "local-meetup-2026-53",
  "description": "Antiquus patior cui desidero. Angustus dapifer animi uterque argumentum voco sono saepe. Tenus depono vero.",
  "location": "Chicago, IL",
  "isOnline": false,
  "startAt": "2025-09-29T05:03:45.969Z",
  "endAt": "2025-09-29T16:06:45.094Z",
  "organizerUserId": 152,
  "attendeeCount": 520,
  "createdAt": "2026-03-23T09:03:32.770Z",
  "updatedAt": "2026-05-16T19:37:26.648Z"
}
Draftbit