example-data.com
Menu
Browse docs and collections

Overview

events / #40

Nov
21
Sat

Summit Hackathon 2026

6:56 AM – 8:01 AM

Online

314 attending

Id coniecto defaeco cruentus nesciunt absum defungo trepide cribro. Aro velum aedificium succurro tibi bibo thorax derideo venio. Verus pauper animus vilis ventus capio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 40,
  "title": "Summit Hackathon 2026",
  "slug": "summit-hackathon-2026-40",
  "description": "Id coniecto defaeco cruentus nesciunt absum defungo trepide cribro. Aro velum aedificium succurro tibi bibo thorax derideo venio. Verus pauper animus vilis ventus capio.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-11-21T06:56:40.323Z",
  "endAt": "2026-11-22T08:01:45.316Z",
  "organizerUserId": 142,
  "attendeeCount": 314,
  "createdAt": "2026-04-21T06:23:57.137Z",
  "updatedAt": "2026-05-17T01:37:29.062Z"
}