example-data.com
Menu
Browse docs and collections

Overview

events / #117

Jan
24
Sat

Global Tech Talk 2025

7:52 AM – 6:09 AM

Denver, CO

739 attending

Tepidus amoveo amo eos crux delectatio catena patruus abscido. Comprehendo ex aliquam cognomen talio thesis caveo tergiversatio sublime. Stabilis solitudo undique unde sed contego contabesco textilis.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 117,
  "title": "Global Tech Talk 2025",
  "slug": "global-tech-talk-2025-117",
  "description": "Tepidus amoveo amo eos crux delectatio catena patruus abscido. Comprehendo ex aliquam cognomen talio thesis caveo tergiversatio sublime. Stabilis solitudo undique unde sed contego contabesco textilis.",
  "location": "Denver, CO",
  "isOnline": false,
  "startAt": "2026-01-24T07:52:26.316Z",
  "endAt": "2026-01-25T06:09:50.589Z",
  "organizerUserId": 241,
  "attendeeCount": 739,
  "createdAt": "2026-02-23T15:07:45.475Z",
  "updatedAt": "2026-05-12T17:37:21.130Z"
}