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.
Overview
events / #84
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.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/84" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/84" ); const event = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/events.d.ts https://example-data.com/types/events.d.ts
import type { Event } from "./types/events";
const res = await fetch(
"https://example-data.com/api/v1/events/84"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/84"
)
event = res.json() Response
{
"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"
}