example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #248

May
5
Tue

Budget Review

10:53 AM – 3:33 PM

Google Meet

Repudiandae solio tenuis velociter bellum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 248,
  "ownerUserId": 107,
  "title": "Budget Review",
  "description": "Repudiandae solio tenuis velociter bellum.",
  "startAt": "2026-05-05T10:53:08.730Z",
  "endAt": "2026-05-05T15:33:14.501Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [],
  "createdAt": "2026-03-02T14:02:24.906Z",
  "updatedAt": "2026-03-30T07:25:08.702Z"
}