example-data.com

events / #90

Jan
15
Fri

Summit Sprint 2025

1:24 PM – 5:05 AM

Portland, OR

228 attending

Repellat contego sollicito considero aestas degero. Subseco enim acies custodia vesica. Tergo sonitus cras arbitro adstringo tandem possimus desidero.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/90"
)
event = res.json()
{
  "id": 90,
  "title": "Summit Sprint 2025",
  "slug": "summit-sprint-2025-90",
  "description": "Repellat contego sollicito considero aestas degero. Subseco enim acies custodia vesica. Tergo sonitus cras arbitro adstringo tandem possimus desidero.",
  "location": "Portland, OR",
  "isOnline": false,
  "startAt": "2027-01-15T13:24:56.538Z",
  "endAt": "2027-01-17T05:05:11.278Z",
  "organizerUserId": 114,
  "attendeeCount": 228,
  "createdAt": "2026-03-11T20:28:19.004Z",
  "updatedAt": "2026-04-23T14:02:43.876Z"
}
Draftbit