example-data.com

events / #110

Jul
12
Sat

Local Sprint 2026

5:37 PM – 12:18 PM

Online

310 attending

Arbustum acerbitas deserunt virga carcer blanditiis. Temperantia studio ago nulla. Sit theologus bestia vis ambitus cenaculum dolor.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/110"
)
event = res.json()
{
  "id": 110,
  "title": "Local Sprint 2026",
  "slug": "local-sprint-2026-110",
  "description": "Arbustum acerbitas deserunt virga carcer blanditiis. Temperantia studio ago nulla. Sit theologus bestia vis ambitus cenaculum dolor.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2025-07-12T17:37:49.085Z",
  "endAt": "2025-07-13T12:18:03.686Z",
  "organizerUserId": 177,
  "attendeeCount": 310,
  "createdAt": "2025-12-10T20:07:15.127Z",
  "updatedAt": "2026-01-18T02:39:58.891Z"
}
Draftbit