example-data.com
Menu
Browse docs and collections

Overview

events / #20

Jul
30
Wed

Community Hackathon 2026

3:37 PM – 6:34 AM

Online

844 attending

Quas aequus conduco. Cur consuasor comminor atrocitas voluptates sonitus creptio anser. Corona voluptatem tertius defessus libero.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 20,
  "title": "Community Hackathon 2026",
  "slug": "community-hackathon-2026-20",
  "description": "Quas aequus conduco. Cur consuasor comminor atrocitas voluptates sonitus creptio anser. Corona voluptatem tertius defessus libero.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2025-07-30T15:37:14.998Z",
  "endAt": "2025-07-31T06:34:37.840Z",
  "organizerUserId": 170,
  "attendeeCount": 844,
  "createdAt": "2025-08-02T00:41:45.369Z",
  "updatedAt": "2025-11-17T14:55:26.645Z"
}