example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #118

Jun
3
Wed

Hiring Interview

12:10 PM – 2:30 PM

Google Meet

Advenio succurro vobis desparatus audax uxor audax stipes vomer.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 118,
  "ownerUserId": 50,
  "title": "Hiring Interview",
  "description": "Advenio succurro vobis desparatus audax uxor audax stipes vomer.",
  "startAt": "2026-06-03T12:10:50.426Z",
  "endAt": "2026-06-03T14:30:36.686Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    244
  ],
  "createdAt": "2026-03-03T13:15:22.448Z",
  "updatedAt": "2026-04-17T18:01:21.577Z"
}