example-data.com
Menu
Browse docs and collections

Overview

events / #66

Oct
5
Mon

Global Workshop 2025

10:14 PM – 10:12 AM

Portland, OR

608 attending

Amoveo talio vilicus vorago omnis caelum. Vulnus thymum candidus synagoga. Volo turpis cerno.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 66,
  "title": "Global Workshop 2025",
  "slug": "global-workshop-2025-66",
  "description": "Amoveo talio vilicus vorago omnis caelum. Vulnus thymum candidus synagoga. Volo turpis cerno.",
  "location": "Portland, OR",
  "isOnline": false,
  "startAt": "2026-10-05T22:14:18.416Z",
  "endAt": "2026-10-07T10:12:27.962Z",
  "organizerUserId": 2,
  "attendeeCount": 608,
  "createdAt": "2026-02-23T23:21:57.462Z",
  "updatedAt": "2026-03-25T07:37:11.352Z"
}