example-data.com

events / #83

Apr
9
Thu

Virtual Workshop 2025

9:07 PM – 3:35 AM

Chicago, IL

740 attending

Commodo ab tergo volo derideo summopere aurum. Ante varius cubicularis tredecim vos usus totidem. Artificiose autus thorax deduco summa crur utor degero vilitas cogito.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/83"
)
event = res.json()
{
  "id": 83,
  "title": "Virtual Workshop 2025",
  "slug": "virtual-workshop-2025-83",
  "description": "Commodo ab tergo volo derideo summopere aurum. Ante varius cubicularis tredecim vos usus totidem. Artificiose autus thorax deduco summa crur utor degero vilitas cogito.",
  "location": "Chicago, IL",
  "isOnline": false,
  "startAt": "2026-04-09T21:07:49.183Z",
  "endAt": "2026-04-11T03:35:33.623Z",
  "organizerUserId": 193,
  "attendeeCount": 740,
  "createdAt": "2025-07-06T01:19:12.732Z",
  "updatedAt": "2025-10-24T08:43:45.713Z"
}
Draftbit