example-data.com
Menu
Browse docs and collections

Overview

events / #24

Sep
17
Wed

Premier Sprint 2025

8:21 AM – 11:14 AM

Online

493 attending

Thymum optio thema paulatim ea deporto aggredior venia. Villa ocer theologus demens cui. Tempore tactus verto apto cur curia vel surculus caecus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 24,
  "title": "Premier Sprint 2025",
  "slug": "premier-sprint-2025-24",
  "description": "Thymum optio thema paulatim ea deporto aggredior venia. Villa ocer theologus demens cui. Tempore tactus verto apto cur curia vel surculus caecus.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2025-09-17T08:21:31.478Z",
  "endAt": "2025-09-18T11:14:38.145Z",
  "organizerUserId": 228,
  "attendeeCount": 493,
  "createdAt": "2026-02-14T13:10:44.790Z",
  "updatedAt": "2026-03-27T21:30:22.239Z"
}