lexera_get_order_status returns current_status: verified_executed, the payload contains law firm-certified artifact URLs. These are finalized .docx documents that you can download using the same Bearer token you use for SSE and JSON-RPC calls. This guide shows how to save the redlined contract and the review report to disk.
Prerequisites
- The order must be in
verified_executedstatus. - The
certified_redline_urlandcertified_report_urlfrom the status payload. - A valid Lexera API key with the
lex_prefix.
Download the certified redline
Thecertified_redline_url points to the final, attorney-reviewed contract. Use a GET request with your Authorization: Bearer header.
Using curl
Using Node.js fetch
The
certified_report_url provides the separate review report document. Download it the same way by substituting the report URL and your desired output filename.What you receive
certified_redline_url: The finalized contract with attorney revisions, tracked changes, and the law firm-certified signature.certified_report_url: The review report summarizing the attorney’s findings, notes, and any risk flags.
.docx and are suitable for direct use in contract execution or internal record keeping.
Next steps
- For background on how artifacts are generated and what they contain, see Certified Artifacts.
- To check whether an order is ready for download, follow the Poll Order Status guide.