example-data.com

events / #13

Aug
5
Wed

Annual Tech Talk 2025

12:31 PM – 12:42 PM

Chicago, IL

32 attending

Tabernus rerum cornu cohaero campana dolores attonbitus tener aspernatur. Crastinus caecus versus arbustum speculum odit ascit inflammatio. Adeo sed cibo trado.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/events/13" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/events/13"
);
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/13"
);
const event = (await res.json()) as Event;
import requests

res = requests.get(
    "https://example-data.com/api/v1/events/13"
)
event = res.json()
{
  "id": 13,
  "title": "Annual Tech Talk 2025",
  "slug": "annual-tech-talk-2025-13",
  "description": "Tabernus rerum cornu cohaero campana dolores attonbitus tener aspernatur. Crastinus caecus versus arbustum speculum odit ascit inflammatio. Adeo sed cibo trado.",
  "location": "Chicago, IL",
  "isOnline": false,
  "startAt": "2026-08-05T12:31:56.676Z",
  "endAt": "2026-08-06T12:42:06.201Z",
  "organizerUserId": 140,
  "attendeeCount": 32,
  "createdAt": "2025-06-17T14:38:46.606Z",
  "updatedAt": "2026-02-05T12:49:14.424Z"
}
Draftbit