example-data.com
Menu
Browse docs and collections

Overview

events / #127

Mar
7
Sat

Global Design Conference 2026

2:18 PM – 9:46 PM

Los Angeles, CA

98 attending

Amet eius communis ventosus umquam. Contabesco quaerat venustas calcar dolor adeo. Vis ancilla arma desidero esse verecundia adaugeo synagoga alioqui.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 127,
  "title": "Global Design Conference 2026",
  "slug": "global-design-conference-2026-127",
  "description": "Amet eius communis ventosus umquam. Contabesco quaerat venustas calcar dolor adeo. Vis ancilla arma desidero esse verecundia adaugeo synagoga alioqui.",
  "location": "Los Angeles, CA",
  "isOnline": false,
  "startAt": "2026-03-07T14:18:26.529Z",
  "endAt": "2026-03-08T21:46:18.324Z",
  "organizerUserId": 186,
  "attendeeCount": 98,
  "createdAt": "2025-12-09T16:00:37.843Z",
  "updatedAt": "2026-05-11T12:03:43.706Z"
}