Retrieve an order by its id.
curl -i -X GET \
'https://tenant.checkr.com/api/orders/{id}?include=property%2Capplicant' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Checkr-Tenant-Version: 2026-04-29'OK
Unique identifier for the order. Use this value in subsequent API calls; it is stable for the lifetime of the order. Test-mode IDs carry a _test_ infix (e.g. ord_test_TUyYsLnyTbG3xv9hONJF7w); live-mode IDs have no infix.
Whether this order was created with a live API key (true) or a test API key (false). Test-mode orders are inert: they route to canned provider responses and do not produce billable activity. See Testing for details.
Current state of the order in its lifecycle:
waiting_for_applicant— invitation sent; awaiting the applicant's consent and informationpending— applicant submitted consent and information; screening is in progresscompleted— screening is complete and the report is availablecanceled— terminated before completion
Slugs of add-on products run on the order in addition to the ones bundled into package. Sorted alphabetically; empty if none were requested.
[ "identity_verification" ]
Identifier of the property record this order is screening for. Pass ?include=property to embed the full property object.
Identifier of the applicant being screened. Pass ?include=applicant to embed the full applicant object.
Absolute URL for the applicant apply flow (https://…/apply/<token>). Returned only while the order status is waiting_for_applicant — for live-mode orders, and in test mode only for the Hudson Green applicant-experience profile (other test applicants auto-submit and skip the apply flow — see Testing). null when status is pending, completed, or canceled, and for ordinary test-mode profiles. When the apply flow runs, Checkr emails this link to the applicant; in live mode, if a phone number is present, Checkr also texts it. Integrators may share application_url themselves.
Embedded property object. Only returned when the request includes ?include=property.
Embedded applicant object. Only returned when the request includes ?include=applicant.
Timestamp the order reached the completed status. Null while in any earlier state, and remains null if the order is canceled.
{ "id": "ord_TUyYsLnyTbG3xv9hONJF7w", "live_mode": true, "status": "waiting_for_applicant", "package": "string", "add_on_products": [ "identity_verification" ], "property_id": "pr_K9dM2pXqR4vN8tLZbWyHJa", "applicant_id": "ap_F3hQ7wEsLp2xBnVcRuMyTk", "application_url": "https://tenant.checkr.com/apply/K7P2MX", "property": { "id": "pr_K9dM2pXqR4vN8tLZbWyHJa", "name": "Sunset Apartments", "street": "1234 Market St", "unit": "Apt 4B", "city": "San Francisco", "state": "CA", "zipcode": "94103", "created_at": "2019-08-24T14:15:22Z" }, "applicant": { "id": "ap_F3hQ7wEsLp2xBnVcRuMyTk", "full_name": "Jane Public", "email": "jane@example.com", "first_name": "string", "last_name": "string", "dob": "1990-05-14", "phone_number": "+15551234567", "ssn": "XXX-XX-6789", "created_at": "2019-08-24T14:15:22Z" }, "created_at": "2019-08-24T14:15:22Z", "completed_at": "2019-08-24T14:15:22Z", "canceled_at": "2019-08-24T14:15:22Z" }