Skip to main content
Every contract dispatched through lexera_route_to_specialist moves through a human verification pipeline tracked by current_status. Lexera documents two exhaustive statuses today. Understanding each state helps you build reliable polling logic and know exactly when certified artifacts are ready for download.
These are the exhaustive statuses documented today: pending_admin_triage and verified_executed. Intermediate states are not documented.

Status overview

pending_admin_triage

This is the initial status set as soon as Lexera accepts the dispatch. The contract has been assigned to a law firm queue, a temporary AED wallet hold has been placed, and the document is awaiting human attorney review.

Example payload

At this stage, the requires_human_verification flag is true, confirming the document is in the human review pipeline.

verified_executed

This is the final status. The assigned attorney has completed the review, applied any requested specialist instructions, and issued the law firm-certified signature. The payload now includes download URLs for the finalized artifacts.

Example payload

When you observe verified_executed, you can immediately download the .docx artifacts using the provided URLs and your Bearer token.

Next steps