example-data.com
Menu
Browse docs and collections

Overview

events / #49

Nov
20
Fri

Community Hackathon 2026

7:12 PM – 5:23 AM

Online

345 attending

Animadverto strues adversus. Creo cras tamisium cursus undique sopor adfectus congregatio absum. Nemo canis aggero absorbeo combibo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 49,
  "title": "Community Hackathon 2026",
  "slug": "community-hackathon-2026-49",
  "description": "Animadverto strues adversus. Creo cras tamisium cursus undique sopor adfectus congregatio absum. Nemo canis aggero absorbeo combibo.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-11-20T19:12:08.775Z",
  "endAt": "2026-11-22T05:23:13.632Z",
  "organizerUserId": 101,
  "attendeeCount": 345,
  "createdAt": "2025-12-20T02:33:28.842Z",
  "updatedAt": "2026-04-06T19:00:26.628Z"
}