> ## 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.

# Certified Artifacts: Redlines, Reports, and Notes

> Retrieve law firm-certified .docx redlines, compliance reports, and attorney notes once an order reaches the verified_executed status.

When a human attorney completes review on a document you routed through Lexera, the platform finalizes the case and produces certified artifacts. These are not draft suggestions: they are law firm-certified deliverables, including a redlined contract and a compliance report, both delivered as `.docx` files. You retrieve them by polling the order status until it reaches `verified_executed`.

## What you receive upon completion

Once `current_status` becomes `verified_executed`, the `lexera_get_order_status` response includes three key fields:

* `certified_redline_url` — The finalized contract with tracked changes and attorney corrections.
* `certified_report_url` — A separate law firm-certified compliance report.
* `attorney_notes` — A free-text summary of the changes made during review.

## Example completed order response

```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"
}
```

## Downloading artifacts

Artifact URLs returned in the status response are authenticated. Download them with the same Bearer token you use for SSE and tool calls:

```bash theme={null}
curl -X GET https://lexera.dev/api/mcp/orders/32e65a49-ba4c-441f-b8fe-73932e545f89/download \
  -H "Authorization: Bearer lex_82bea57b8c3fd39f6907ccb1130a6a0cbb6d8e956ff14a88" \
  --output certified_contract.docx
```

For a complete walkthrough of saving and handling these files, see [Download Artifacts](/guides/download-certified-artifacts).

## Artifact lifecycle

Artifacts are generated only after the attorney finishes review. Until then, `lexera_get_order_status` returns `current_status: pending_admin_triage` and does not include download URLs. Your integration should poll the status endpoint (or listen for SSE status events) and trigger the download step only when the status transitions to `verified_executed`.

<Note>
  The exhaustive list of documented order statuses today is `pending_admin_triage` and `verified_executed`. For details on each state, see [Order Statuses](/reference/order-statuses).
</Note>

## Next steps

* Poll for completion with [lexera\_get\_order\_status](/tools/lexera-get-order-status)
* Learn the full download workflow in [Download Artifacts](/guides/download-certified-artifacts)
* Review all documented statuses in [Order Statuses](/reference/order-statuses)
