Skip to content

Get report for order

Request

Retrieve the report associated with an order. Returns 404 if the order has not yet produced a report — typically because it is still in waiting_for_applicant or pending status.

Security
bearer-token
Path
idstringrequired

Id of the order.

Headers
Checkr-Tenant-Versionstring

CalVer-dated API version to pin behavior to (e.g. 2026-04-29). When omitted, the request is served by the newest supported version. Unknown values return 422.

Value:"2026-04-29"
GET
/orders/{id}/report
curl -i -X GET \
  'https://tenant.checkr.com/api/orders/{id}/report' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Checkr-Tenant-Version: 2026-04-29'

Responses

OK

Bodyapplication/json
idstring

Unique identifier for the report. Use this value in subsequent API calls; it is stable for the lifetime of the report. Test-mode IDs carry a _test_ infix (e.g. rp_test_K9dM2pXqR4vN8tLZbWyHJa); live-mode IDs have no infix.

Example:"rp_K9dM2pXqR4vN8tLZbWyHJa"
live_modeboolean

Whether this report was produced from an order created with a live API key (true) or a test API key (false). Test-mode reports are produced from canned provider responses and do not reflect real screening activity. See Testing for details.

Example:true
order_idstring

Identifier of the order this report was produced for.

Example:"ord_TUyYsLnyTbG3xv9hONJF7w"
created_atstring, (date-time)

Timestamp the report was created.

updated_atstring, (date-time)

Timestamp the report was last updated.

criminal_historycriminal-history (object) or null
One of:

Report item for the criminal history product, containing findings sourced from court records across the jurisdictions searched for the applicant.

credit_reportcredit-report (object) or null
One of:

Report item for the credit report product, containing findings sourced from a soft credit pull. The pull does not affect the applicant's credit score.

eviction_historyeviction-history (object) or null
One of:

Report item for the eviction history product, containing findings sourced from civil court filings across the jurisdictions searched for the applicant.

identity_verificationidentity-verification (object) or null
One of:

Report item for the identity verification product, containing the outcome of a analysis of a user provided document and a selfie.

income_verificationincome-verification (object) or null
One of:

Report item for income verification, containing the applicant's income streams and the totals across them. income_streams lists every stream identified, and verification_method says what the findings were drawn from.

Which fields carry a figure depends on the evidence behind each stream, and every field below says when it is null.

sex_offender_registrysex-offender-registry (object) or null
One of:

Report item for the sex offender registry product, containing matches found against state sex offender registries.

global_watchlistglobal-watchlist (object) or null
One of:

Report item for the global watchlist product, containing matches found against sanctions, healthcare, and other regulatory watchlists.

Response
{ "id": "rp_K9dM2pXqR4vN8tLZbWyHJa", "live_mode": true, "order_id": "ord_TUyYsLnyTbG3xv9hONJF7w", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "criminal_history": { "id": "rpi_F3hQ7wEsLp2xBnVcRuMyTk", "status": "clear", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "records": [] }, "credit_report": { "id": "rpi_F3hQ7wEsLp2xBnVcRuMyTk", "status": "clear", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "credit_file_status": "available", "credit_score": 712, "credit_summary": {} }, "eviction_history": { "id": "rpi_F3hQ7wEsLp2xBnVcRuMyTk", "status": "clear", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "records": [] }, "identity_verification": { "id": "rpi_F3hQ7wEsLp2xBnVcRuMyTk", "status": "clear", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "document_type": {}, "document_data": {}, "consider_reasons": [], "documents_zip_url": "https://tenant.checkr.com/api/identity_verification_documents/idvd_K9dM2pXqR4vN8tLZbWyHJa" }, "income_verification": { "id": "rpi_F3hQ7wEsLp2xBnVcRuMyTk", "status": "clear", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "verification_method": "document", "current_as_of": "2019-08-24", "current_month_income": {}, "summary": {}, "accounts": [], "income_streams": [], "documents": [], "consider_reasons": [] }, "sex_offender_registry": { "id": "rpi_F3hQ7wEsLp2xBnVcRuMyTk", "status": "clear", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "records": [] }, "global_watchlist": { "id": "rpi_F3hQ7wEsLp2xBnVcRuMyTk", "status": "clear", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "records": [] } }