example-data.com
Menu
Browse docs and collections

Overview

events / #146

Jun
15
Mon

Virtual Sprint 2025

8:44 PM – 3:26 AM

Portland, OR

772 attending

Sint degero vilicus nisi comitatus. Constans speculum eaque umbra arbor eveniet depono subiungo abutor terga. Crebro ante admitto defleo cohibeo cogito velit vestigium cilicium.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 146,
  "title": "Virtual Sprint 2025",
  "slug": "virtual-sprint-2025-146",
  "description": "Sint degero vilicus nisi comitatus. Constans speculum eaque umbra arbor eveniet depono subiungo abutor terga. Crebro ante admitto defleo cohibeo cogito velit vestigium cilicium.",
  "location": "Portland, OR",
  "isOnline": false,
  "startAt": "2026-06-15T20:44:40.096Z",
  "endAt": "2026-06-16T03:26:23.846Z",
  "organizerUserId": 64,
  "attendeeCount": 772,
  "createdAt": "2026-03-25T15:13:53.269Z",
  "updatedAt": "2026-03-28T03:39:15.237Z"
}