example-data.com

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

Referenced by

curl -sS \
  "https://example-data.com/api/v1/events/2" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/events/2"
);
const event = await res.json();
import type { Event } from "https://example-data.com/types/events.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/events/2"
);
const event = (await res.json()) as Event;
import requests

res = requests.get(
    "https://example-data.com/api/v1/events/2"
)
event = res.json()
{
  "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"
}
Draftbit