example-data.com
Menu
Browse docs and collections

Overview

events / #114

Jan
19
Tue

Virtual Sprint 2026

1:37 PM – 1:56 PM

Online

464 attending

Ara attero molestias cribro corona subito tepidus. Adopto sponte trepide adversus vociferor bos id vivo accusamus. Trepide bibo beneficium amita veniam.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 114,
  "title": "Virtual Sprint 2026",
  "slug": "virtual-sprint-2026-114",
  "description": "Ara attero molestias cribro corona subito tepidus. Adopto sponte trepide adversus vociferor bos id vivo accusamus. Trepide bibo beneficium amita veniam.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2027-01-19T13:37:53.992Z",
  "endAt": "2027-01-20T13:56:57.806Z",
  "organizerUserId": 237,
  "attendeeCount": 464,
  "createdAt": "2025-09-17T06:05:25.093Z",
  "updatedAt": "2025-11-26T07:25:08.924Z"
}