Provenance
PublisherCheckr
API basehttps://api.checkr.com/v1
Freshness & coverage
FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (API key)
Methods (6)
listCandidates
readList candidates with documented filters; sensitive response fields are redacted.
Input schema
{ "type": "object", "properties": { "email": { "type": "string", "description": "Exact candidate email filter." }, "fullName": { "type": "string", "description": "Candidate full-name filter." }, "adjudication": { "type": "string", "description": "Adjudication filter." }, "customId": { "type": "string", "description": "Customer-defined candidate ID." }, "createdAfter": { "type": "string", "description": "Created-at lower bound." }, "createdBefore": { "type": "string", "description": "Created-at upper bound." }, "page": { "type": "integer", "minimum": 1 }, "perPage": { "type": "integer", "minimum": 1, "maximum": 100 } }, "additionalProperties": false }getCandidate
readGet a candidate by ID, optionally with redacted reports or geos.
Required paramsidInput schema
{ "type": "object", "properties": { "id": { "type": "string", "description": "Checkr candidate ID." }, "includeReports": { "type": "boolean" }, "includeGeos": { "type": "boolean" } }, "required": [ "id" ], "additionalProperties": false }getReport
readGet an existing report by ID with PII, documents, and links redacted.
Required paramsidInput schema
{ "type": "object", "properties": { "id": { "type": "string", "description": "Checkr report ID." } }, "required": [ "id" ], "additionalProperties": false }listPackages
readList screening packages configured for the authenticated Checkr account.
Input schema
{ "type": "object", "properties": { "page": { "type": "integer", "minimum": 1 }, "perPage": { "type": "integer", "minimum": 1, "maximum": 100 } }, "additionalProperties": false }getPackage
readRetrieve one configured screening package by ID.
Required paramsidInput schema
{ "type": "object", "properties": { "id": { "type": "string", "description": "Checkr package ID." } }, "required": [ "id" ], "additionalProperties": false }getServiceInfo
readReturn static Checkr connector capabilities, privacy controls, and API documentation.
