example-data.com
Menu
Browse docs and collections

Overview

calendar-events / #489

May
1
Fri

Team Standup

3:13 AM – 3:13 AM

Cafeteria

Villa assumenda nulla.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 489,
  "ownerUserId": 200,
  "title": "Team Standup",
  "description": "Villa assumenda nulla.",
  "startAt": "2026-05-01T03:13:17.833Z",
  "endAt": "2026-05-02T03:13:17.833Z",
  "isAllDay": true,
  "location": "Cafeteria",
  "attendeeUserIds": [
    96,
    204,
    160,
    62,
    17
  ],
  "createdAt": "2026-04-02T15:48:35.213Z",
  "updatedAt": "2026-04-26T07:37:42.218Z"
}