List interviews
Returns a paginated list of interviews for the organization.
Token scopes: ats:read
Authentication
AuthorizationBearer
## Authentication
The Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.
```curl
curl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \
-H 'Authorization: Bearer YOUR-TOKEN-HERE'
```
[Learn more about authentication](/api/authentication)
OR
AuthorizationBearer
Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/
Query parameters
interviewer_hou_ids
Filter interviews by interviewer HRIS organization user IDs.
job_ids
Filter interviews by job IDs.
status
Filter interviews by status.
Allowed values:
candidate_ids
Filter interviews by candidate IDs.
date_range_start
Lower bound of interview start time (ISO 8601).
date_range_end
Upper bound of interview start time (ISO 8601).
updated_after
Return interviews updated strictly after this ISO 8601 datetime (incremental sync).
sort_order
Order interviews by upcoming-first, newest-first, or oldest-first.
Allowed values:
cursor
Pagination cursor returned by a previous response.
limit
Maximum number of interviews to return per page.
Response
Paginated list of interviews
data
Page of interviews.
has_more
Whether more pages are available beyond the current page.
next_cursor
Cursor to fetch the next page; null when there are no more pages.
total_count
Total number of interviews matching the filters.
Errors
400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error