example-data.com
Menu
Browse docs and collections

Overview

events / #67

Sep
16
Tue

Summit Design Conference 2025

3:05 PM – 2:27 AM

San Francisco, CA

572 attending

Corporis comes tepesco campana tam spero vivo canis. Blanditiis calamitas cernuus copiose deprimo somnus adicio benigne concido tollo. Vigor succurro accusantium demo deleo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 67,
  "title": "Summit Design Conference 2025",
  "slug": "summit-design-conference-2025-67",
  "description": "Corporis comes tepesco campana tam spero vivo canis. Blanditiis calamitas cernuus copiose deprimo somnus adicio benigne concido tollo. Vigor succurro accusantium demo deleo.",
  "location": "San Francisco, CA",
  "isOnline": false,
  "startAt": "2025-09-16T15:05:07.585Z",
  "endAt": "2025-09-17T02:27:22.008Z",
  "organizerUserId": 25,
  "attendeeCount": 572,
  "createdAt": "2025-08-05T18:40:54.776Z",
  "updatedAt": "2026-04-22T07:04:05.585Z"
}