example-data.com

events / #7

Jan
7
Wed

Global Demo Day 2026

4:03 PM – 3:33 PM

Online

421 attending

Exercitationem deorsum clementia tondeo minima cribro tracto. Speciosus supra sto strenuus super adficio amor desino temporibus viriliter. Creptio quibusdam sed varietas.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/events/7"
)
event = res.json()
{
  "id": 7,
  "title": "Global Demo Day 2026",
  "slug": "global-demo-day-2026-7",
  "description": "Exercitationem deorsum clementia tondeo minima cribro tracto. Speciosus supra sto strenuus super adficio amor desino temporibus viriliter. Creptio quibusdam sed varietas.",
  "location": "Online",
  "isOnline": true,
  "startAt": "2026-01-07T16:03:34.053Z",
  "endAt": "2026-01-08T15:33:03.027Z",
  "organizerUserId": 132,
  "attendeeCount": 421,
  "createdAt": "2025-06-02T22:57:24.081Z",
  "updatedAt": "2025-06-12T16:01:00.185Z"
}
Draftbit