example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #449

Feb
21
Sat

Hiring Interview

10:10 AM – 10:10 AM

Zoom

Praesentium talio officiis tamisium attero avarus eaque tunc ubi.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 449,
  "ownerUserId": 184,
  "title": "Hiring Interview",
  "description": "Praesentium talio officiis tamisium attero avarus eaque tunc ubi.",
  "startAt": "2026-02-21T10:10:26.512Z",
  "endAt": "2026-02-22T10:10:26.512Z",
  "isAllDay": true,
  "location": "Zoom",
  "attendeeUserIds": [
    83,
    99,
    45,
    183,
    18
  ],
  "createdAt": "2026-03-21T11:42:45.047Z",
  "updatedAt": "2026-03-21T14:59:43.645Z"
}