example-data.com
Menu
Browse docs and collections

Overview

events / #68

Dec
29
Mon

Community Demo Day 2026

3:53 AM – 12:27 PM

Miami, FL

930 attending

Certe adsidue caput caritas uxor spes aliquam cado. Crapula admoneo correptius voluptatum canis supellex cuppedia congregatio balbus. Clarus calcar apparatus cupressus solvo tonsor.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 68,
  "title": "Community Demo Day 2026",
  "slug": "community-demo-day-2026-68",
  "description": "Certe adsidue caput caritas uxor spes aliquam cado. Crapula admoneo correptius voluptatum canis supellex cuppedia congregatio balbus. Clarus calcar apparatus cupressus solvo tonsor.",
  "location": "Miami, FL",
  "isOnline": false,
  "startAt": "2025-12-29T03:53:23.450Z",
  "endAt": "2025-12-30T12:27:40.431Z",
  "organizerUserId": 84,
  "attendeeCount": 930,
  "createdAt": "2025-11-19T00:51:04.341Z",
  "updatedAt": "2026-04-13T11:48:09.092Z"
}