example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #23

Apr
9
Thu

Hiring Interview

11:12 PM – 5:12 AM

Conference Room B

Corpus audio censura.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 23,
  "ownerUserId": 11,
  "title": "Hiring Interview",
  "description": "Corpus audio censura.",
  "startAt": "2026-04-09T23:12:15.227Z",
  "endAt": "2026-04-10T05:12:04.844Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [],
  "createdAt": "2026-03-15T17:57:08.618Z",
  "updatedAt": "2026-05-18T11:39:06.350Z"
}