example-data.com

events / #70

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.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/events/70" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/events/70"
);
const event = await res.json();
import type { Event } from "https://example-data.com/types/events.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/events/70"
);
const event = (await res.json()) as Event;
import requests

res = requests.get(
    "https://example-data.com/api/v1/events/70"
)
event = res.json()
{
  "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"
}
Draftbit