example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #164

Mar
3
Tue

Hiring Interview

10:01 PM – 2:46 AM

Excepturi testimonium deripio tenuis terminatio patria vulgaris spero.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 164,
  "ownerUserId": 70,
  "title": "Hiring Interview",
  "description": "Excepturi testimonium deripio tenuis terminatio patria vulgaris spero.",
  "startAt": "2026-03-03T22:01:42.114Z",
  "endAt": "2026-03-04T02:46:54.243Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    206,
    85,
    224,
    59
  ],
  "createdAt": "2026-03-14T23:05:07.678Z",
  "updatedAt": "2026-05-06T16:48:30.669Z"
}