example-data.com
Menu
Browse docs and collections

Overview

events / #59

Oct
7
Wed

Local Networking Event 2026

5:46 AM – 2:04 PM

Denver, CO

719 attending

Maiores caries asporto substantia recusandae delinquo usque tui. Sophismata sophismata aedificium canis patior verecundia crebro. Tabella admitto cultellus appono decimus vigor adficio adfectus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 59,
  "title": "Local Networking Event 2026",
  "slug": "local-networking-event-2026-59",
  "description": "Maiores caries asporto substantia recusandae delinquo usque tui. Sophismata sophismata aedificium canis patior verecundia crebro. Tabella admitto cultellus appono decimus vigor adficio adfectus.",
  "location": "Denver, CO",
  "isOnline": false,
  "startAt": "2026-10-07T05:46:57.047Z",
  "endAt": "2026-10-07T14:04:08.271Z",
  "organizerUserId": 161,
  "attendeeCount": 719,
  "createdAt": "2025-08-04T23:41:04.148Z",
  "updatedAt": "2026-05-13T00:06:50.048Z"
}