example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #481

May
19
Tue

Hiring Interview

4:38 PM – 9:18 PM

Conference Room A

Argumentum deputo caries confugo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 481,
  "ownerUserId": 197,
  "title": "Hiring Interview",
  "description": "Argumentum deputo caries confugo.",
  "startAt": "2026-05-19T16:38:10.045Z",
  "endAt": "2026-05-19T21:18:45.555Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    149,
    146
  ],
  "createdAt": "2026-04-16T08:20:34.091Z",
  "updatedAt": "2026-04-28T11:16:26.885Z"
}