example-data.com

events / #26

Nov
15
Sat

Premier Sprint 2026

4:03 AM – 7:23 AM

San Francisco, CA

749 attending

Statim speciosus vito iure aut pauci usitas. Comitatus baiulus absens deputo. Depono toties decerno aranea usitas.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/26"
)
event = res.json()
{
  "id": 26,
  "title": "Premier Sprint 2026",
  "slug": "premier-sprint-2026-26",
  "description": "Statim speciosus vito iure aut pauci usitas. Comitatus baiulus absens deputo. Depono toties decerno aranea usitas.",
  "location": "San Francisco, CA",
  "isOnline": false,
  "startAt": "2025-11-15T04:03:46.962Z",
  "endAt": "2025-11-15T07:23:58.068Z",
  "organizerUserId": 182,
  "attendeeCount": 749,
  "createdAt": "2026-05-01T08:46:59.032Z",
  "updatedAt": "2026-05-06T23:13:20.396Z"
}
Draftbit