example-data.com

events / #22

May
14
Fri

Local Bootcamp 2025

8:13 AM – 11:53 AM

Seattle, WA

320 attending

Tenus cornu creptio taedium. Deinde centum deludo. Condico debeo sapiente appositus appono abeo synagoga arceo.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/22"
)
event = res.json()
{
  "id": 22,
  "title": "Local Bootcamp 2025",
  "slug": "local-bootcamp-2025-22",
  "description": "Tenus cornu creptio taedium. Deinde centum deludo. Condico debeo sapiente appositus appono abeo synagoga arceo.",
  "location": "Seattle, WA",
  "isOnline": false,
  "startAt": "2027-05-14T08:13:12.647Z",
  "endAt": "2027-05-14T11:53:01.229Z",
  "organizerUserId": 207,
  "attendeeCount": 320,
  "createdAt": "2025-07-09T22:44:46.656Z",
  "updatedAt": "2025-12-19T10:17:54.847Z"
}
Draftbit