example-data.com
Menu
Browse docs and collections

Overview

events / #143

Apr
19
Sun

Virtual Design Conference 2025

2:19 PM – 8:07 PM

Boston, MA

415 attending

Veritas adversus defendo delectatio denuo. Conqueror claustrum tamdiu barba attollo calcar aureus. Audax venio aufero libero.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 143,
  "title": "Virtual Design Conference 2025",
  "slug": "virtual-design-conference-2025-143",
  "description": "Veritas adversus defendo delectatio denuo. Conqueror claustrum tamdiu barba attollo calcar aureus. Audax venio aufero libero.",
  "location": "Boston, MA",
  "isOnline": false,
  "startAt": "2026-04-19T14:19:41.254Z",
  "endAt": "2026-04-20T20:07:24.290Z",
  "organizerUserId": 131,
  "attendeeCount": 415,
  "createdAt": "2025-10-10T08:57:11.050Z",
  "updatedAt": "2026-03-27T02:16:00.248Z"
}