example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #425

May
6
Wed

Hiring Interview

6:30 AM – 6:30 AM

Demitto explicabo clarus porro cibus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 425,
  "ownerUserId": 174,
  "title": "Hiring Interview",
  "description": "Demitto explicabo clarus porro cibus.",
  "startAt": "2026-05-06T06:30:50.932Z",
  "endAt": "2026-05-07T06:30:50.932Z",
  "isAllDay": true,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-03-01T23:38:57.124Z",
  "updatedAt": "2026-03-22T20:47:47.677Z"
}