example-data.com
Menu
Browse docs and collections

Overview

events / #148

Jan
13
Wed

Open Tech Talk 2025

9:24 AM – 6:57 AM

Seattle, WA

965 attending

Cohors textor voro. Vilis advoco inflammatio cupiditas praesentium volup vallum amor. Carpo apparatus tertius spargo quo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 148,
  "title": "Open Tech Talk 2025",
  "slug": "open-tech-talk-2025-148",
  "description": "Cohors textor voro. Vilis advoco inflammatio cupiditas praesentium volup vallum amor. Carpo apparatus tertius spargo quo.",
  "location": "Seattle, WA",
  "isOnline": false,
  "startAt": "2027-01-13T09:24:52.875Z",
  "endAt": "2027-01-15T06:57:45.037Z",
  "organizerUserId": 237,
  "attendeeCount": 965,
  "createdAt": "2026-03-13T19:48:13.856Z",
  "updatedAt": "2026-03-27T18:53:31.576Z"
}