example-data.com

events / #113

May
10
Sun

Open Meetup 2025

5:50 PM – 6:30 AM

Miami, FL

393 attending

Cur ustulo contego aggredior sollicito colo vitium. Coerceo amplitudo timor. Consequatur temporibus truculenter beatae volva creator.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/113"
)
event = res.json()
{
  "id": 113,
  "title": "Open Meetup 2025",
  "slug": "open-meetup-2025-113",
  "description": "Cur ustulo contego aggredior sollicito colo vitium. Coerceo amplitudo timor. Consequatur temporibus truculenter beatae volva creator.",
  "location": "Miami, FL",
  "isOnline": false,
  "startAt": "2026-05-10T17:50:34.635Z",
  "endAt": "2026-05-12T06:30:27.572Z",
  "organizerUserId": 116,
  "attendeeCount": 393,
  "createdAt": "2025-10-07T05:30:50.262Z",
  "updatedAt": "2025-11-12T21:21:07.503Z"
}
Draftbit