example-data.com

events / #84

Jun
30
Tue

Premier Hackathon 2025

9:45 AM – 3:20 PM

Austin, TX

770 attending

Illo aeternus voluptatum utrum tam benigne careo vomito argumentum. Architecto verbum utroque. Uxor succedo peior iusto patior sunt apostolus vespillo sequi.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/84"
)
event = res.json()
{
  "id": 84,
  "title": "Premier Hackathon 2025",
  "slug": "premier-hackathon-2025-84",
  "description": "Illo aeternus voluptatum utrum tam benigne careo vomito argumentum. Architecto verbum utroque. Uxor succedo peior iusto patior sunt apostolus vespillo sequi.",
  "location": "Austin, TX",
  "isOnline": false,
  "startAt": "2026-06-30T09:45:49.070Z",
  "endAt": "2026-06-30T15:20:06.516Z",
  "organizerUserId": 197,
  "attendeeCount": 770,
  "createdAt": "2026-04-29T22:25:02.566Z",
  "updatedAt": "2026-05-08T20:32:27.817Z"
}
Draftbit