example-data.com

events / #122

Nov
1
Sat

Community Bootcamp 2025

2:07 PM – 5:24 AM

New York, NY

61 attending

Villa vorax adeptio creator virtus acies desino concido appositus. Clamo alius cultellus stips. Caritas spectaculum vir charisma communis.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/122"
)
event = res.json()
{
  "id": 122,
  "title": "Community Bootcamp 2025",
  "slug": "community-bootcamp-2025-122",
  "description": "Villa vorax adeptio creator virtus acies desino concido appositus. Clamo alius cultellus stips. Caritas spectaculum vir charisma communis.",
  "location": "New York, NY",
  "isOnline": false,
  "startAt": "2025-11-01T14:07:48.201Z",
  "endAt": "2025-11-03T05:24:35.542Z",
  "organizerUserId": 46,
  "attendeeCount": 61,
  "createdAt": "2025-05-29T11:32:24.327Z",
  "updatedAt": "2025-12-04T14:24:45.503Z"
}
Draftbit