Jul
6
Sun
Open Hackathon 2025
7:36 AM – 11:40 AM
Miami, FL
779 attending
Apto verumtamen illo animi eveniet. Defluo hic thorax. Vulariter tandem despecto crebro cubitum beneficium tricesimus commemoro annus.
Overview
events / #63
7:36 AM – 11:40 AM
Miami, FL
779 attending
Apto verumtamen illo animi eveniet. Defluo hic thorax. Vulariter tandem despecto crebro cubitum beneficium tricesimus commemoro annus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/63" ); 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/63"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/63"
)
event = res.json() Response
{
"id": 63,
"title": "Open Hackathon 2025",
"slug": "open-hackathon-2025-63",
"description": "Apto verumtamen illo animi eveniet. Defluo hic thorax. Vulariter tandem despecto crebro cubitum beneficium tricesimus commemoro annus.",
"location": "Miami, FL",
"isOnline": false,
"startAt": "2025-07-06T07:36:45.353Z",
"endAt": "2025-07-06T11:40:06.707Z",
"organizerUserId": 63,
"attendeeCount": 779,
"createdAt": "2025-11-11T17:01:24.750Z",
"updatedAt": "2026-04-29T19:43:58.586Z"
}