example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #507

May
9
Sat

Onboarding Session

5:18 AM – 7:20 AM

Office - Floor 3

Cena curis ater armarium thesaurus ultio solvo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 507,
  "ownerUserId": 210,
  "title": "Onboarding Session",
  "description": "Cena curis ater armarium thesaurus ultio solvo.",
  "startAt": "2026-05-09T05:18:31.216Z",
  "endAt": "2026-05-09T07:20:51.601Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [],
  "createdAt": "2026-04-22T05:32:48.646Z",
  "updatedAt": "2026-05-04T14:23:02.737Z"
}