Skip to main content
When 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_executed status.
  • The certified_redline_url and certified_report_url from the status payload.
  • A valid Lexera API key with the lex_ prefix.

Download the certified redline

The certified_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.
Both files are delivered as .docx and are suitable for direct use in contract execution or internal record keeping.

Next steps