example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #33

Aug
13
Thu

Team Lunch

1:43 AM – 5:00 AM

Google Meet

Vinculum causa templum demoror valeo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 33,
  "ownerUserId": 17,
  "title": "Team Lunch",
  "description": "Vinculum causa templum demoror valeo.",
  "startAt": "2026-08-13T01:43:57.248Z",
  "endAt": "2026-08-13T05:00:26.069Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    233,
    151,
    194
  ],
  "createdAt": "2026-03-24T16:34:53.788Z",
  "updatedAt": "2026-05-04T12:06:44.081Z"
}