example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #496

Mar
2
Mon

Team Lunch

3:06 PM – 4:26 PM

Summisse aer suggero calamitas defero.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 496,
  "ownerUserId": 204,
  "title": "Team Lunch",
  "description": "Summisse aer suggero calamitas defero.",
  "startAt": "2026-03-02T15:06:45.221Z",
  "endAt": "2026-03-02T16:26:07.748Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    166,
    132
  ],
  "createdAt": "2026-04-30T23:37:06.230Z",
  "updatedAt": "2026-05-09T15:37:28.953Z"
}