example-data.com
Menu
Browse docs and collections

Overview

events / #130

Dec
29
Mon

Virtual Workshop 2025

11:47 AM – 10:55 PM

Chicago, IL

861 attending

Studio succedo decerno tredecim voluptas dignissimos clementia concedo socius spoliatio. Alveus casso tristis nulla careo dignissimos. Accusamus harum totam voro.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 130,
  "title": "Virtual Workshop 2025",
  "slug": "virtual-workshop-2025-130",
  "description": "Studio succedo decerno tredecim voluptas dignissimos clementia concedo socius spoliatio. Alveus casso tristis nulla careo dignissimos. Accusamus harum totam voro.",
  "location": "Chicago, IL",
  "isOnline": false,
  "startAt": "2025-12-29T11:47:47.361Z",
  "endAt": "2025-12-29T22:55:35.859Z",
  "organizerUserId": 211,
  "attendeeCount": 861,
  "createdAt": "2025-11-17T07:51:03.007Z",
  "updatedAt": "2026-04-21T05:35:47.811Z"
}