example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #233

May
14
Thu

Hiring Interview

2:10 PM – 4:24 PM

Facilis amicitia anser alienus adflicto vox delectatio ipsum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 233,
  "ownerUserId": 99,
  "title": "Hiring Interview",
  "description": "Facilis amicitia anser alienus adflicto vox delectatio ipsum.",
  "startAt": "2026-05-14T14:10:07.458Z",
  "endAt": "2026-05-14T16:24:25.537Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-03-15T01:20:32.612Z",
  "updatedAt": "2026-04-25T10:18:15.031Z"
}