example-data.com
Menu
Browse docs and collections

Overview

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

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/events/60" \
  -H "Accept: application/json"

JavaScript example

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/events/60"
)
event = res.json()

Response

{
  "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"
}