cURL
curl --request GET \ --url https://api.example.com/api/v1/calendar/events
{ "id": "<string>", "title": "<string>", "description": "<string>", "location": "<string>", "start_at": "<string>", "end_at": "<string>", "all_day": true, "status": "<string>", "source": "<string>", "attendees": [ {} ], "is_recurring": true }
List the authenticated user’s calendar events.
"confirmed"
"pending"
"user"
"agent"
"external_request"
"system"
curl "https://api.ama2.me/api/v1/calendar/events?start=2026-04-01T00:00:00Z&end=2026-04-30T23:59:59Z" \ -H "Authorization: Bearer YOUR_JWT_TOKEN"