Skip to main content
The Fetch API allows you to pull candidate and interview data back into your own internal systems. All fetch requests are POST requests with a JSON body.

Request body fields

1. Paginated fetch

Retrieve a paginated list of candidates for a specific Interviewer.

2. Single candidate fetch

Look up a specific candidate using their unique interview ID.

3. Custom field filters

Filter your candidate list based on values in additionalFields. Filtering rules:
  • Numeric values: Returns candidates where the field value is the specified number (e.g. "score": 50 returns all candidates with score 50 or above).
  • String values: Returns candidates where the field value exactly matches the string (e.g. "review": "yes").