curl --request GET \
--url https://api.example.com/calendar/events{
"events": [
{
"id": "<string>",
"google_event_id": "<string>",
"calendar_id": "<string>",
"summary": "<string>",
"description": "<string>",
"location": "<string>",
"start": {},
"end": {},
"status": "<string>",
"color": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"masters": [
{
"recurrence": [
{}
]
}
],
"exceptions": [
{
"recurring_event_id": "<string>",
"original_start_time": {}
}
]
}Retrieve decrypted calendar events from local storage
curl --request GET \
--url https://api.example.com/calendar/events{
"events": [
{
"id": "<string>",
"google_event_id": "<string>",
"calendar_id": "<string>",
"summary": "<string>",
"description": "<string>",
"location": "<string>",
"start": {},
"end": {},
"status": "<string>",
"color": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
],
"masters": [
{
"recurrence": [
{}
]
}
],
"exceptions": [
{
"recurring_event_id": "<string>",
"original_start_time": {}
}
]
}GET /calendar/events
cal_abc123,cal_def456Show event object
Show master event object
summary, description, locationcurl -X GET "https://api.chronoscalendar.com/calendar/events?calendar_ids=cal_abc123" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
curl -X GET "https://api.chronoscalendar.com/calendar/events" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"events": [
{
"id": "evt_123",
"google_event_id": "abc123xyz",
"calendar_id": "cal_abc123",
"summary": "Team Meeting",
"description": "Discuss Q2 roadmap",
"location": "Conference Room A",
"start": {
"dateTime": "2026-03-05T14:00:00Z",
"timeZone": "America/New_York"
},
"end": {
"dateTime": "2026-03-05T15:00:00Z",
"timeZone": "America/New_York"
},
"status": "confirmed",
"color": "#9fe1e7",
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-02T12:30:00Z"
}
],
"masters": [
{
"id": "evt_456",
"google_event_id": "def456uvw",
"calendar_id": "cal_abc123",
"summary": "Weekly Standup",
"start": {
"dateTime": "2026-03-03T09:00:00Z",
"timeZone": "America/New_York"
},
"end": {
"dateTime": "2026-03-03T09:30:00Z",
"timeZone": "America/New_York"
},
"recurrence": [
"RRULE:FREQ=WEEKLY;BYDAY=MO,WE,FR"
],
"status": "confirmed"
}
],
"exceptions": [
{
"id": "evt_789",
"google_event_id": "ghi789rst_20260305T090000Z",
"calendar_id": "cal_abc123",
"recurring_event_id": "ghi789rst",
"original_start_time": {
"dateTime": "2026-03-05T09:00:00Z"
},
"summary": "Weekly Standup - CANCELLED",
"status": "cancelled"
}
]
}
{
"events": [],
"masters": [],
"exceptions": []
}
calendar_ids parameter (more than 20 calendars)backend/app/routers/calendar.py:67-102 (endpoint handler)backend/app/calendar/db.py:257-295 (database queries)backend/app/calendar/helpers.py (decryption logic)