example-data.com

events / #28

Jun
13
Fri

Open Bootcamp 2026

7:07 PM – 12:49 PM

New York, NY

218 attending

Aliquam demoror cavus itaque adulescens unde crebro defaeco patior tripudio. Vociferor arbitro antea subseco pectus. Corona accusator combibo.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/28"
)
event = res.json()
{
  "id": 28,
  "title": "Open Bootcamp 2026",
  "slug": "open-bootcamp-2026-28",
  "description": "Aliquam demoror cavus itaque adulescens unde crebro defaeco patior tripudio. Vociferor arbitro antea subseco pectus. Corona accusator combibo.",
  "location": "New York, NY",
  "isOnline": false,
  "startAt": "2025-06-13T19:07:46.127Z",
  "endAt": "2025-06-15T12:49:27.823Z",
  "organizerUserId": 194,
  "attendeeCount": 218,
  "createdAt": "2025-11-28T09:49:20.767Z",
  "updatedAt": "2026-02-27T07:22:41.417Z"
}
Draftbit