Get a set of criminal checks. Results are only available after the check completes (completed_at is set).
Always check completed_at before interpreting the results array. An empty results array is ambiguous unless completed_at is set: when completed_at is null the check is still pending and results have not yet been populated, whereas an empty results array on a check with completed_at set means the check completed with no records found.
Request optional response fields. Repeat the parameter for multiple values.
| Items Enum Value | Description |
|---|---|
| profile | Embeds the full profile object in place of |
| results_found | Returns |
- Checkr Trust APIhttps://api.checkrtrust.com/v1/criminal_checks
curl -i -X GET \
'https://api.checkrtrust.com/v1/criminal_checks?limit=10&skip=0&include%5B%5D=profile' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'OK
A criminal check result. Results are only available after the check completes (completed_at is set). Before completion, the results array will be empty. Always check completed_at before interpreting the results array: an empty results array is ambiguous unless completed_at is set. When completed_at is null the check is still pending, whereas an empty results array with completed_at set means the check completed with no records found.
[ { "profile_id": "2b8313e8-4efd-45a1-b578-952b8313e890", "completed_at": null, "results": null } ]