example-data.com

events / #87

Feb
22
Mon

Premier Launch Party 2026

10:18 PM – 9:48 AM

Denver, CO

412 attending

Enim decens sumo corpus vetus tum thorax. Conturbo cruentus spiculum asperiores cohors abutor iure. Comparo comparo commodi vulgus tabula via aliquam.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/87"
)
event = res.json()
{
  "id": 87,
  "title": "Premier Launch Party 2026",
  "slug": "premier-launch-party-2026-87",
  "description": "Enim decens sumo corpus vetus tum thorax. Conturbo cruentus spiculum asperiores cohors abutor iure. Comparo comparo commodi vulgus tabula via aliquam.",
  "location": "Denver, CO",
  "isOnline": false,
  "startAt": "2027-02-22T22:18:24.930Z",
  "endAt": "2027-02-23T09:48:00.487Z",
  "organizerUserId": 130,
  "attendeeCount": 412,
  "createdAt": "2026-02-18T19:29:32.638Z",
  "updatedAt": "2026-04-15T10:11:54.306Z"
}
Draftbit