example-data.com
Menu
Browse docs and collections

Overview

events / #90

Jan
15
Fri

Summit Sprint 2025

1:24 PM – 5:05 AM

Portland, OR

228 attending

Repellat contego sollicito considero aestas degero. Subseco enim acies custodia vesica. Tergo sonitus cras arbitro adstringo tandem possimus desidero.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 90,
  "title": "Summit Sprint 2025",
  "slug": "summit-sprint-2025-90",
  "description": "Repellat contego sollicito considero aestas degero. Subseco enim acies custodia vesica. Tergo sonitus cras arbitro adstringo tandem possimus desidero.",
  "location": "Portland, OR",
  "isOnline": false,
  "startAt": "2027-01-15T13:24:56.538Z",
  "endAt": "2027-01-17T05:05:11.278Z",
  "organizerUserId": 114,
  "attendeeCount": 228,
  "createdAt": "2026-03-11T20:28:19.004Z",
  "updatedAt": "2026-04-23T14:02:43.876Z"
}