example-data.com
Menu
Browse docs and collections

Overview

events / #116

Nov
11
Tue

Local Design Conference 2026

12:13 PM – 7:51 PM

Boston, MA

361 attending

Altus ventito vinum contigo turpis vindico. Tenus annus demum crinis rem alii optio velit umerus. Tabula dolores casus id culpa coadunatio vorago.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 116,
  "title": "Local Design Conference 2026",
  "slug": "local-design-conference-2026-116",
  "description": "Altus ventito vinum contigo turpis vindico. Tenus annus demum crinis rem alii optio velit umerus. Tabula dolores casus id culpa coadunatio vorago.",
  "location": "Boston, MA",
  "isOnline": false,
  "startAt": "2025-11-11T12:13:34.329Z",
  "endAt": "2025-11-12T19:51:11.800Z",
  "organizerUserId": 148,
  "attendeeCount": 361,
  "createdAt": "2026-04-24T13:54:39.084Z",
  "updatedAt": "2026-05-08T16:08:45.493Z"
}