example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #277

May
12
Tue

Engineering All-Hands

8:40 AM – 4:06 PM

Google Meet

Arcus tero accendo similique animadverto ratione speculum tendo articulus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 277,
  "ownerUserId": 116,
  "title": "Engineering All-Hands",
  "description": "Arcus tero accendo similique animadverto ratione speculum tendo articulus.",
  "startAt": "2026-05-12T08:40:04.826Z",
  "endAt": "2026-05-12T16:06:52.340Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    95,
    246
  ],
  "createdAt": "2026-04-09T16:13:00.514Z",
  "updatedAt": "2026-04-10T17:17:23.831Z"
}