example-data.com
Menu
Browse docs and collections

Overview

events / #25

Nov
2
Mon

Virtual Launch Party 2025

2:49 AM – 4:00 PM

San Francisco, CA

699 attending

Summopere bardus vulnus cubicularis pecco adsum. Ager caterva autem subvenio patior vis vitiosus patior vester. Abbas provident aer velum atqui.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 25,
  "title": "Virtual Launch Party 2025",
  "slug": "virtual-launch-party-2025-25",
  "description": "Summopere bardus vulnus cubicularis pecco adsum. Ager caterva autem subvenio patior vis vitiosus patior vester. Abbas provident aer velum atqui.",
  "location": "San Francisco, CA",
  "isOnline": false,
  "startAt": "2026-11-02T02:49:19.704Z",
  "endAt": "2026-11-02T16:00:04.283Z",
  "organizerUserId": 179,
  "attendeeCount": 699,
  "createdAt": "2026-04-13T19:15:32.987Z",
  "updatedAt": "2026-04-16T03:42:07.596Z"
}