example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #318

Apr
15
Wed

Hiring Interview

7:27 PM – 12:48 AM

Office - Floor 3

Villa credo nobis ara adamo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 318,
  "ownerUserId": 133,
  "title": "Hiring Interview",
  "description": "Villa credo nobis ara adamo.",
  "startAt": "2026-04-15T19:27:04.669Z",
  "endAt": "2026-04-16T00:48:19.186Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    34,
    68,
    55
  ],
  "createdAt": "2026-04-06T07:30:34.697Z",
  "updatedAt": "2026-05-17T09:30:26.018Z"
}