example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #571

May
17
Sun

Customer Interview

3:29 PM – 5:22 PM

Cafeteria

Aperiam depromo venustas constans constans demergo appello.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 571,
  "ownerUserId": 238,
  "title": "Customer Interview",
  "description": "Aperiam depromo venustas constans constans demergo appello.",
  "startAt": "2026-05-17T15:29:07.296Z",
  "endAt": "2026-05-17T17:22:13.849Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [],
  "createdAt": "2026-03-17T21:28:25.589Z",
  "updatedAt": "2026-03-26T07:03:36.081Z"
}