example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #424

Feb
24
Tue

Customer Interview

10:00 AM – 3:24 PM

Microsoft Teams

Iste voluptates volaticus spiritus vitiosus arceo demulceo certus ulciscor vitae.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 424,
  "ownerUserId": 174,
  "title": "Customer Interview",
  "description": "Iste voluptates volaticus spiritus vitiosus arceo demulceo certus ulciscor vitae.",
  "startAt": "2026-02-24T10:00:44.447Z",
  "endAt": "2026-02-24T15:24:36.947Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [
    41,
    200,
    212,
    66,
    1
  ],
  "createdAt": "2026-05-06T03:04:16.947Z",
  "updatedAt": "2026-05-12T17:42:10.695Z"
}