example-data.com
Menu
Browse docs and collections

Overview

events / #8

May
5
Wed

Community Design Conference 2025

3:24 PM – 8:44 PM

Seattle, WA

933 attending

Bellum videlicet earum vulgo ducimus suffoco vomer curvo territo. Assumenda deleniti voro censura. Verecundia carus stella degero adversus adsum curtus claro volva benevolentia.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 8,
  "title": "Community Design Conference 2025",
  "slug": "community-design-conference-2025-8",
  "description": "Bellum videlicet earum vulgo ducimus suffoco vomer curvo territo. Assumenda deleniti voro censura. Verecundia carus stella degero adversus adsum curtus claro volva benevolentia.",
  "location": "Seattle, WA",
  "isOnline": false,
  "startAt": "2027-05-05T15:24:16.766Z",
  "endAt": "2027-05-05T20:44:33.394Z",
  "organizerUserId": 229,
  "attendeeCount": 933,
  "createdAt": "2025-11-05T21:30:13.433Z",
  "updatedAt": "2026-04-11T23:20:30.631Z"
}