example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #60

May
20
Wed

Engineering All-Hands

4:56 PM – 8:01 PM

Rooftop

Civitas substantia valeo tertius celo ustulo uter odit sto stultus.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/60"
);
const calendarEvent = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/60"
);
const calendarEvent = (await res.json()) as CalendarEvent;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/60"
)
calendar_event = res.json()

Response

{
  "id": 60,
  "ownerUserId": 29,
  "title": "Engineering All-Hands",
  "description": "Civitas substantia valeo tertius celo ustulo uter odit sto stultus.",
  "startAt": "2026-05-20T16:56:27.670Z",
  "endAt": "2026-05-20T20:01:04.734Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [],
  "createdAt": "2026-04-15T11:34:22.481Z",
  "updatedAt": "2026-05-18T19:54:14.831Z"
}