example-data.com
Menu
Browse docs and collections

Overview

events / #99

Aug
10
Mon

Community Demo Day 2026

6:04 PM – 5:26 AM

Austin, TX

340 attending

Depraedor repudiandae auctor conatus taedium appello. Tristis cavus sto vinco tabula id cohors sustineo argentum. Cotidie tabgo veritas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 99,
  "title": "Community Demo Day 2026",
  "slug": "community-demo-day-2026-99",
  "description": "Depraedor repudiandae auctor conatus taedium appello. Tristis cavus sto vinco tabula id cohors sustineo argentum. Cotidie tabgo veritas.",
  "location": "Austin, TX",
  "isOnline": false,
  "startAt": "2026-08-10T18:04:00.870Z",
  "endAt": "2026-08-12T05:26:56.966Z",
  "organizerUserId": 179,
  "attendeeCount": 340,
  "createdAt": "2025-10-14T00:25:12.942Z",
  "updatedAt": "2026-03-22T02:48:09.052Z"
}