example-data.com

events / #143

Apr
19
Sun

Virtual Design Conference 2025

2:19 PM – 8:07 PM

Boston, MA

415 attending

Veritas adversus defendo delectatio denuo. Conqueror claustrum tamdiu barba attollo calcar aureus. Audax venio aufero libero.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/143"
)
event = res.json()
{
  "id": 143,
  "title": "Virtual Design Conference 2025",
  "slug": "virtual-design-conference-2025-143",
  "description": "Veritas adversus defendo delectatio denuo. Conqueror claustrum tamdiu barba attollo calcar aureus. Audax venio aufero libero.",
  "location": "Boston, MA",
  "isOnline": false,
  "startAt": "2026-04-19T14:19:41.254Z",
  "endAt": "2026-04-20T20:07:24.290Z",
  "organizerUserId": 131,
  "attendeeCount": 415,
  "createdAt": "2025-10-10T08:57:11.050Z",
  "updatedAt": "2026-03-27T02:16:00.248Z"
}
Draftbit