example-data.com

events / #18

Feb
17
Tue

Open Design Conference 2026

11:19 AM – 3:40 PM

Denver, CO

38 attending

Ex subvenio varius. Arx fuga ventus crepusculum brevis. Sub theca thesis.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/18"
)
event = res.json()
{
  "id": 18,
  "title": "Open Design Conference 2026",
  "slug": "open-design-conference-2026-18",
  "description": "Ex subvenio varius. Arx fuga ventus crepusculum brevis. Sub theca thesis.",
  "location": "Denver, CO",
  "isOnline": false,
  "startAt": "2026-02-17T11:19:23.804Z",
  "endAt": "2026-02-18T15:40:17.844Z",
  "organizerUserId": 239,
  "attendeeCount": 38,
  "createdAt": "2026-01-10T14:18:20.505Z",
  "updatedAt": "2026-03-01T03:03:14.275Z"
}
Draftbit