example-data.com

events / #60

May
5
Wed

Open Hackathon 2025

10:45 PM – 7:39 PM

Denver, CO

761 attending

Agnosco creator voluptatem catena crastinus curo statim. Caste reiciendis pariatur quidem confido theatrum. Caecus triduana utpote minima fugiat fugit antepono cogo.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/60"
)
event = res.json()
{
  "id": 60,
  "title": "Open Hackathon 2025",
  "slug": "open-hackathon-2025-60",
  "description": "Agnosco creator voluptatem catena crastinus curo statim. Caste reiciendis pariatur quidem confido theatrum. Caecus triduana utpote minima fugiat fugit antepono cogo.",
  "location": "Denver, CO",
  "isOnline": false,
  "startAt": "2027-05-05T22:45:39.921Z",
  "endAt": "2027-05-07T19:39:39.157Z",
  "organizerUserId": 42,
  "attendeeCount": 761,
  "createdAt": "2025-09-27T16:09:29.750Z",
  "updatedAt": "2025-10-25T10:24:23.843Z"
}
Draftbit