example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #323

Feb
23
Mon

Off-site Planning

4:22 PM – 4:22 PM

Google Meet

Vergo turpis atavus cernuus adeo consequuntur assumenda.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 323,
  "ownerUserId": 135,
  "title": "Off-site Planning",
  "description": "Vergo turpis atavus cernuus adeo consequuntur assumenda.",
  "startAt": "2026-02-23T16:22:23.554Z",
  "endAt": "2026-02-24T16:22:23.554Z",
  "isAllDay": true,
  "location": "Google Meet",
  "attendeeUserIds": [
    238,
    58
  ],
  "createdAt": "2026-03-04T13:42:46.646Z",
  "updatedAt": "2026-04-27T23:29:42.624Z"
}