Aug
9
Sat
Premier Tech Talk 2026
8:17 AM – 7:21 PM
Austin, TX
893 attending
Perferendis celebrer solio impedit alii via atavus caelestis denuo quam. Sophismata undique totidem aperio iusto. Curatio alveus sit.
Overview
events / #70
8:17 AM – 7:21 PM
Austin, TX
893 attending
Perferendis celebrer solio impedit alii via atavus caelestis denuo quam. Sophismata undique totidem aperio iusto. Curatio alveus sit.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/events/70" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/events/70" ); 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/70"
);
const event = (await res.json()) as Event; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/events/70"
)
event = res.json() Response
{
"id": 70,
"title": "Premier Tech Talk 2026",
"slug": "premier-tech-talk-2026-70",
"description": "Perferendis celebrer solio impedit alii via atavus caelestis denuo quam. Sophismata undique totidem aperio iusto. Curatio alveus sit.",
"location": "Austin, TX",
"isOnline": false,
"startAt": "2025-08-09T08:17:50.108Z",
"endAt": "2025-08-10T19:21:45.653Z",
"organizerUserId": 85,
"attendeeCount": 893,
"createdAt": "2026-05-11T12:09:39.135Z",
"updatedAt": "2026-05-17T13:04:32.922Z"
}