List bookings
GET
/bookings
const url = 'https://app.whatsetter.com/api/v1/bookings?limit=25';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://app.whatsetter.com/api/v1/bookings?limit=25' \ --header 'Authorization: Bearer <token>'Calls booked by the AI in chat, most recent slot first. Requires scope
bookings:read.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”status
string
campaign_id
string
since
string format: date-time
Only bookings starting after this ISO-8601 date.
limit
integer
cursor
string
Opaque cursor from the previous page’s pagination.next_cursor.
Responses
Section titled “Responses”Page of bookings
Media typeapplication/json
object
data
Array<object>
object
id
string
status
string | null
lead_id
string | null
campaign_id
string | null
provider
string | null
source
string | null
start_at
string | null format: date-time
end_at
string | null format: date-time
timezone
string | null
attendee
object
name
string | null
email
string | null
phone
string | null
cancel_url
⚠️ Capability link: anyone with it can cancel the call. Treat as sensitive.
string | null
reschedule_url
⚠️ Capability link: anyone with it can reschedule the call. Treat as sensitive.
string | null
canceled_at
string | null format: date-time
cancellation_reason
string | null
created_at
string format: date-time
pagination
object
has_more
boolean
next_cursor
string | null
Examplegenerated
{ "data": [ { "id": "example", "status": "example", "lead_id": "example", "campaign_id": "example", "provider": "example", "source": "example", "start_at": "2026-04-15T12:00:00Z", "end_at": "2026-04-15T12:00:00Z", "timezone": "example", "attendee": { "name": "example", "email": "example", "phone": "example" }, "cancel_url": "example", "reschedule_url": "example", "canceled_at": "2026-04-15T12:00:00Z", "cancellation_reason": "example", "created_at": "2026-04-15T12:00:00Z" } ], "pagination": { "has_more": true, "next_cursor": "example" }}Missing, unknown or revoked API key
Media typeapplication/json
object
error
object
code
string
message
string
Examplegenerated
{ "error": { "code": "example", "message": "example" }}Invalid parameter or body
Media typeapplication/json
object
error
object
code
string
message
string
Examplegenerated
{ "error": { "code": "example", "message": "example" }}
