example-data.com
Menu
Browse docs and collections

Overview

events / #83

Apr
9
Thu

Virtual Workshop 2025

9:07 PM – 3:35 AM

Chicago, IL

740 attending

Commodo ab tergo volo derideo summopere aurum. Ante varius cubicularis tredecim vos usus totidem. Artificiose autus thorax deduco summa crur utor degero vilitas cogito.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 83,
  "title": "Virtual Workshop 2025",
  "slug": "virtual-workshop-2025-83",
  "description": "Commodo ab tergo volo derideo summopere aurum. Ante varius cubicularis tredecim vos usus totidem. Artificiose autus thorax deduco summa crur utor degero vilitas cogito.",
  "location": "Chicago, IL",
  "isOnline": false,
  "startAt": "2026-04-09T21:07:49.183Z",
  "endAt": "2026-04-11T03:35:33.623Z",
  "organizerUserId": 193,
  "attendeeCount": 740,
  "createdAt": "2025-07-06T01:19:12.732Z",
  "updatedAt": "2025-10-24T08:43:45.713Z"
}