example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #343

May
3
Sun

Team Lunch

4:24 AM – 6:17 AM

Zoom

Soluta culpo contra hic similique abeo acer suppono paens.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 343,
  "ownerUserId": 141,
  "title": "Team Lunch",
  "description": "Soluta culpo contra hic similique abeo acer suppono paens.",
  "startAt": "2026-05-03T04:24:02.873Z",
  "endAt": "2026-05-03T06:17:24.298Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [],
  "createdAt": "2026-05-10T14:41:07.191Z",
  "updatedAt": "2026-05-19T06:43:18.380Z"
}