Get a single criminal check with a given id. Results are only visible 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 |
| rulesets_applied | Embeds the rulesets applied when filtering this check's results. |
- Checkr Trust APIhttps://api.checkrtrust.com/v1/criminal_checks/{criminal_check_id}
curl -i -X GET \
'https://api.checkrtrust.com/v1/criminal_checks/{criminal_check_id}?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.
A universally unique identifier (UUID) in standard format.
An ISO 8601 formatted date-time string.
An ISO 8601 formatted date-time string.
Array of criminal records. When no records are found, this is an empty array.
Confidence scoring: Each record's cases[] entries may include identity_match_confidence_level, summarizing identity-match confidence for that case. See the case schema and the Instant Criminal Checks tag description.
A reference identifier for linking related records. Limited to 64 alphanumeric characters, underscores, and hyphens.
An unstructured array of human-readable notes about this particular check. May contain notes about how input was parsed, or other information about results. Not intended to be parsed by computer, as these notes are not guaranteed to be in any given format.
[ "changed last_name from 'Smith Jr' to 'Smith'" ]
Present only when include[]=results_found is requested; omitted otherwise. When present, the results array is omitted.
Present only when include[]=rulesets_applied is requested; omitted otherwise.
{ "profile_id": "2b8313e8-4efd-45a1-b578-952b8313e890", "completed_at": null, "results": null }