example-data.com
Menu
Browse docs and collections

Overview

events / #2

Nov
13
Fri

Open Workshop 2026

11:05 PM – 2:53 AM

Portland, OR

286 attending

Depereo sustineo voco tondeo appono. Depulso desipio ipsa animadverto strues denuncio in reiciendis deprimo amitto. Ciminatio antea incidunt tribuo architecto corrigo voluntarius capillus perferendis.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 2,
  "title": "Open Workshop 2026",
  "slug": "open-workshop-2026-2",
  "description": "Depereo sustineo voco tondeo appono. Depulso desipio ipsa animadverto strues denuncio in reiciendis deprimo amitto. Ciminatio antea incidunt tribuo architecto corrigo voluntarius capillus perferendis.",
  "location": "Portland, OR",
  "isOnline": false,
  "startAt": "2026-11-13T23:05:50.305Z",
  "endAt": "2026-11-15T02:53:26.645Z",
  "organizerUserId": 42,
  "attendeeCount": 286,
  "createdAt": "2025-06-06T21:40:19.355Z",
  "updatedAt": "2025-07-06T05:48:53.114Z"
}