example-data.com

events / #63

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.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/63"
)
event = res.json()
{
  "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"
}
Draftbit