example-data.com
Menu
Browse docs and collections

Overview

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

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "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"
}