example-data.com
Menu
Browse docs and collections

Overview

events / #94

Nov
19
Wed

Open Networking Event 2026

12:55 PM – 9:13 AM

Denver, CO

946 attending

Acer tunc cognatus abundans civitas. Curiositas victus crepusculum apto deorsum coerceo voluptate complectus admiratio. Viridis tergiversatio compono talus non tener animadverto ars capio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 94,
  "title": "Open Networking Event 2026",
  "slug": "open-networking-event-2026-94",
  "description": "Acer tunc cognatus abundans civitas. Curiositas victus crepusculum apto deorsum coerceo voluptate complectus admiratio. Viridis tergiversatio compono talus non tener animadverto ars capio.",
  "location": "Denver, CO",
  "isOnline": false,
  "startAt": "2025-11-19T12:55:54.798Z",
  "endAt": "2025-11-20T09:13:14.047Z",
  "organizerUserId": 16,
  "attendeeCount": 946,
  "createdAt": "2026-05-11T00:19:22.041Z",
  "updatedAt": "2026-05-16T21:14:15.036Z"
}