example-data.com
Menu
Browse docs and collections

Overview

events / #89

Oct
21
Wed

Virtual Networking Event 2026

7:05 AM – 12:24 AM

Online

630 attending

Cupressus tui laudantium versus officiis terror. Ipsa suffragium advenio bonus amiculum ventosus vulgivagus tergum. Pecto conitor ultra cultellus ver in compono labore caelum curto.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 89,
  "title": "Virtual Networking Event 2026",
  "slug": "virtual-networking-event-2026-89",
  "description": "Cupressus tui laudantium versus officiis terror. Ipsa suffragium advenio bonus amiculum ventosus vulgivagus tergum. Pecto conitor ultra cultellus ver in compono labore caelum curto.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-10-21T07:05:24.859Z",
  "endAt": "2026-10-23T00:24:08.440Z",
  "organizerUserId": 75,
  "attendeeCount": 630,
  "createdAt": "2025-07-03T02:47:25.047Z",
  "updatedAt": "2025-07-23T03:53:07.228Z"
}