example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #158

Jun
2
Tue

Sales Call

1:48 AM – 1:48 AM

Google Meet

Assumenda amita esse deficio occaecati tonsor aetas vallum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 158,
  "ownerUserId": 67,
  "title": "Sales Call",
  "description": "Assumenda amita esse deficio occaecati tonsor aetas vallum.",
  "startAt": "2026-06-02T01:48:15.197Z",
  "endAt": "2026-06-03T01:48:15.197Z",
  "isAllDay": true,
  "location": "Google Meet",
  "attendeeUserIds": [
    160,
    235,
    125,
    56
  ],
  "createdAt": "2026-05-09T22:28:24.440Z",
  "updatedAt": "2026-05-18T04:01:22.126Z"
}