example-data.com
Menu
Browse docs and collections

Overview

events / #44

Jun
17
Tue

Premier Tech Talk 2026

3:04 AM – 3:42 PM

Austin, TX

335 attending

Cunctatio vulgus conor dolor demens cras curvo benevolentia confero. Demum curis delibero voluntarius voluptatum amoveo benevolentia communis amo suasoria. Labore adfero amplus vesper tactus careo appono aestus tantillus abduco.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 44,
  "title": "Premier Tech Talk 2026",
  "slug": "premier-tech-talk-2026-44",
  "description": "Cunctatio vulgus conor dolor demens cras curvo benevolentia confero. Demum curis delibero voluntarius voluptatum amoveo benevolentia communis amo suasoria. Labore adfero amplus vesper tactus careo appono aestus tantillus abduco.",
  "location": "Austin, TX",
  "isOnline": false,
  "startAt": "2025-06-17T03:04:06.111Z",
  "endAt": "2025-06-17T15:42:27.488Z",
  "organizerUserId": 213,
  "attendeeCount": 335,
  "createdAt": "2026-03-27T07:26:07.048Z",
  "updatedAt": "2026-04-03T23:40:53.910Z"
}