example-data.com
Menu
Browse docs and collections

Overview

events / #118

Mar
7
Sat

Community Bootcamp 2026

6:04 AM – 5:09 AM

Boston, MA

234 attending

Tantillus civis somniculosus summisse amaritudo. Alias audio attero. Ventus una deserunt cresco.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 118,
  "title": "Community Bootcamp 2026",
  "slug": "community-bootcamp-2026-118",
  "description": "Tantillus civis somniculosus summisse amaritudo. Alias audio attero. Ventus una deserunt cresco.",
  "location": "Boston, MA",
  "isOnline": false,
  "startAt": "2026-03-07T06:04:30.885Z",
  "endAt": "2026-03-08T05:09:14.866Z",
  "organizerUserId": 24,
  "attendeeCount": 234,
  "createdAt": "2025-12-13T00:31:21.259Z",
  "updatedAt": "2026-03-18T12:22:46.846Z"
}