List calendar events
Returns a list of calendar events for the authenticated project. Results are paginated using cursor pagination.
Query Parameters
- Type: string
calendar _deduplication _key Filter events by calendar deduplication key
- Type: string
calendar _id Filter events by calendar ID
- Type: string
cursor Cursor for pagination
- Type: string
end _time _lte Filter events with end_time at or before this timestamp (ISO 8601 format)
- Type: string
event _id Filter events by event ID
- Type: stringenum
ordering Order results by field. Use '-' prefix for descending order. Default: -updated_at.
values-created _at -end _time -start _time -updated _at created _at end _time start _time updated _at
- Type: string
start _time _gte Filter events with start_time at or after this timestamp (ISO 8601 format)
- Type: string
updated _after deprecatedDeprecated: Use updated_at_gte instead. Alias for updated_at_gte, kept for backwards compatibility.
- Type: string
updated _at _gte Filter events updated at or after this timestamp (ISO 8601 format)
Headers
- Type: string
Authorization requiredAPI key for authentication
- Type: string
Content - Type requiredShould always be application/json
Responses
- application/json
Request Example for get/api/v1/calendar_events
curl https://app.attendee.dev/api/v1/calendar_events \
--header 'Authorization: Token YOUR_API_KEY_HERE' \
--header 'Content-Type: application/json'
{
"next": "http://api.example.org/accounts/?cursor=cD00ODY%3D\"",
"previous": "http://api.example.org/accounts/?cursor=cj0xJnA9NDg3",
"results": [
{
"id": "evt_abcdef1234567890",
"calendar_id": "cal_abcdef1234567890",
"platform_uuid": "google_event_123456789",
"meeting_url": "https://meet.google.com/abc-defg-hij",
"name": "Event Name",
"start_time": "2025-01-15T14:00:00Z",
"end_time": "2025-01-15T15:00:00Z",
"is_deleted": false,
"attendees": [
{
"email": "user1@example.com",
"name": "John Doe"
},
{
"email": "user2@example.com",
"name": "Jane Smith"
}
],
"raw": {
"google_event_data": "..."
},
"bots": [
{
"id": "bot_abcdef1234567890",
"metadata": {
"customer_id": "abc123"
},
"meeting_url": "https://meet.google.com/abc-defg-hij",
"state": "joined_recording",
"events": [],
"transcription_state": "complete",
"recording_state": "complete",
"join_at": "2025-01-15T14:00:00Z"
}
],
"created_at": "2025-01-13T10:30:00.123456Z",
"updated_at": "2025-01-13T10:30:00.123456Z"
}
]
}