example-data.com
Menu
Browse docs and collections

Overview

events / #88

Apr
23
Fri

Virtual Bootcamp 2025

1:18 PM – 7:37 AM

San Francisco, CA

774 attending

Sum occaecati deprecator ancilla strenuus vitae. Culpa cedo eveniet avarus bibo tactus succurro colo vomito eum. In volva porro tam amplus cito.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 88,
  "title": "Virtual Bootcamp 2025",
  "slug": "virtual-bootcamp-2025-88",
  "description": "Sum occaecati deprecator ancilla strenuus vitae. Culpa cedo eveniet avarus bibo tactus succurro colo vomito eum. In volva porro tam amplus cito.",
  "location": "San Francisco, CA",
  "isOnline": false,
  "startAt": "2027-04-23T13:18:45.390Z",
  "endAt": "2027-04-25T07:37:40.817Z",
  "organizerUserId": 59,
  "attendeeCount": 774,
  "createdAt": "2025-06-21T06:42:56.057Z",
  "updatedAt": "2026-01-30T18:23:04.930Z"
}