> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lexera.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# lexera_get_order_status: Retrieve Verification Result

> Poll the real-time status of a dispatched legal document. Returns certified artifact URLs and attorney notes once human verification completes.

The `lexera_get_order_status` tool retrieves the current state of a document that was dispatched via [`lexera_route_to_specialist`](/tools/lexera-route-to-specialist). Use the `order_id` returned at dispatch time to poll for updates. Once the human attorney completes review and issues the law firm-certified signature, the status changes to `verified_executed` and the response includes download links for the finalized artifacts.

## Parameters

<ParamField body="job_id" type="string" required>
  The `order_id` returned from a successful [`lexera_route_to_specialist`](/tools/lexera-route-to-specialist) call.
</ParamField>

## JSON-RPC request

<CodeGroup>
  ```json theme={null}
  {
    "jsonrpc": "2.0",
    "id": 2,
    "method": "tools/call",
    "params": {
      "name": "lexera_get_order_status",
      "arguments": {
        "job_id": "32e65a49-ba4c-441f-b8fe-73932e545f89"
      }
    }
  }
  ```

  ```bash theme={null}
  curl -X POST "https://lexera.dev/mcp-server/messages?sessionId=YOUR_SESSION_ID" \
    -H "Authorization: Bearer lex_82bea57b8c3fd39f..." \
    -H "Content-Type: application/json" \
    -d '{
      "jsonrpc": "2.0",
      "id": 2,
      "method": "tools/call",
      "params": {
        "name": "lexera_get_order_status",
        "arguments": {
          "job_id": "32e65a49-ba4c-441f-b8fe-73932e545f89"
        }
      }
    }'
  ```
</CodeGroup>

<Info>
  The POST returns `HTTP 202 Accepted`. The status result is streamed back over the open SSE connection.
</Info>

## Response (completed order)

When the human attorney has finished review, the response is streamed over SSE inside a JSON-RPC 2.0 envelope:

```json theme={null}
{
  "order_id": "32e65a49-ba4c-441f-b8fe-73932e545f89",
  "current_status": "verified_executed",
  "certified_redline_url": "https://lexera.dev/api/mcp/orders/32e65a49.../download",
  "certified_report_url": "https://lexera.dev/api/mcp/orders/32e65a49.../download",
  "attorney_notes": "Removed California law, updated to Dubai/UAE. Capped penalty.",
  "completed_at": "2026-08-24T09:15:11.356Z"
}
```

<ResponseField name="order_id" type="string">
  The UUID of the order, matching the `job_id` from the request.
</ResponseField>

<ResponseField name="current_status" type="string">
  The real-time status of the order. The exhaustive list of documented statuses is `pending_admin_triage` and `verified_executed`.
</ResponseField>

<ResponseField name="certified_redline_url" type="string">
  Present only when `current_status` is `verified_executed`. A direct download link for the law firm-certified redline `.docx` artifact.
</ResponseField>

<ResponseField name="certified_report_url" type="string">
  Present only when `current_status` is `verified_executed`. A direct download link for the law firm-certified report artifact.
</ResponseField>

<ResponseField name="attorney_notes" type="string">
  Present only when `current_status` is `verified_executed`. A summary of changes and recommendations from the reviewing attorney.
</ResponseField>

<ResponseField name="completed_at" type="string">
  Present only when `current_status` is `verified_executed`. The ISO 8601 timestamp when the attorney finalized the review.
</ResponseField>

## Status lifecycle

The exhaustive list of documented order statuses today is:

* `pending_admin_triage` — The document has been dispatched and is awaiting initial triage by the assigned law firm.
* `verified_executed` — The human attorney has completed review, issued the law firm-certified signature, and the finalized artifacts are ready for download.

## Download artifacts

When `current_status` is `verified_executed`, use the `certified_redline_url` and `certified_report_url` to download the finalized documents. See the [Download Artifacts guide](/guides/download-certified-artifacts) for a complete curl example and instructions on saving the `.docx` files.
