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.
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'OK
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.
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.
Identifier of the order this report was produced for.
Report item for the criminal history product, containing findings sourced from court records across the jurisdictions searched for the applicant.
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.
Report item for the eviction history product, containing findings sourced from civil court filings across the jurisdictions searched for the applicant.
Report item for the identity verification product, containing the outcome of a analysis of a user provided document and a selfie.
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.
Report item for the sex offender registry product, containing matches found against state sex offender registries.
{ "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": [ … ] } }