example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #79

Feb
25
Wed

Strategy Workshop

5:11 PM – 12:32 AM

Google Meet

Strues candidus soleo caveo venustas cunctatio aegre aqua alioqui laborum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 79,
  "ownerUserId": 35,
  "title": "Strategy Workshop",
  "description": "Strues candidus soleo caveo venustas cunctatio aegre aqua alioqui laborum.",
  "startAt": "2026-02-25T17:11:19.770Z",
  "endAt": "2026-02-26T00:32:47.978Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    217
  ],
  "createdAt": "2026-03-07T15:49:45.491Z",
  "updatedAt": "2026-05-16T01:16:28.926Z"
}