example-data.com
Menu
Browse docs and collections

Overview

events / #74

Feb
20
Sat

Premier Hackathon 2026

12:13 PM – 4:07 PM

Miami, FL

187 attending

Videlicet vester bos sophismata cibo ambitus statim cedo ante tergiversatio. Validus attollo qui aperio adsidue. Unde corrigo placeat creator toties minus exercitationem aveho.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 74,
  "title": "Premier Hackathon 2026",
  "slug": "premier-hackathon-2026-74",
  "description": "Videlicet vester bos sophismata cibo ambitus statim cedo ante tergiversatio. Validus attollo qui aperio adsidue. Unde corrigo placeat creator toties minus exercitationem aveho.",
  "location": "Miami, FL",
  "isOnline": false,
  "startAt": "2027-02-20T12:13:17.964Z",
  "endAt": "2027-02-21T16:07:26.029Z",
  "organizerUserId": 164,
  "attendeeCount": 187,
  "createdAt": "2026-03-06T12:18:52.898Z",
  "updatedAt": "2026-04-07T21:14:11.713Z"
}