example-data.com
Menu
Browse docs and collections

Overview

events / #100

Aug
29
Sat

Local Bootcamp 2026

4:29 AM – 11:45 PM

Miami, FL

1000 attending

Maiores calco demens curiositas deleo vorago. Solum ter tristis capitulus defluo officiis derelinquo amita. Patria abduco tollo minima supra basium sufficio clam somniculosus patrocinor.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 100,
  "title": "Local Bootcamp 2026",
  "slug": "local-bootcamp-2026-100",
  "description": "Maiores calco demens curiositas deleo vorago. Solum ter tristis capitulus defluo officiis derelinquo amita. Patria abduco tollo minima supra basium sufficio clam somniculosus patrocinor.",
  "location": "Miami, FL",
  "isOnline": false,
  "startAt": "2026-08-29T04:29:18.772Z",
  "endAt": "2026-08-30T23:45:35.805Z",
  "organizerUserId": 119,
  "attendeeCount": 1000,
  "createdAt": "2025-08-23T22:49:43.688Z",
  "updatedAt": "2026-01-09T08:03:57.907Z"
}