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

# Get settlement instructions

> Download a bank account's settlement instructions as a PDF.

Downloads a PDF containing the settlement instructions for a bank account: the account and routing numbers, beneficiary name and address, and the receiving bank's details. The response body is the raw file, not a JSON object.

Share this PDF with a payer who needs to send funds to the account — for example, a payer setting up a wire or ACH credit.

## Path parameters

<ParamField path="account_id" type="string" required>
  The unique identifier of the bank account.
</ParamField>

## Response

Returns the file as `application/pdf`, downloaded with a `Content-Disposition: attachment` header. The filename is `{account_id}_settlement_instructions.pdf`.

<ResponseExample>
  ```bash 200 theme={null}
  GET /v0/accounts/account_Rv4nBt8xKw2pMh6s/settlement-instructions

  Content-Type: application/pdf
  Content-Disposition: attachment; filename="account_Rv4nBt8xKw2pMh6s_settlement_instructions.pdf"
  Cache-Control: private, no-store

  <binary PDF data>
  ```

  ```json 404 theme={null}
  {
    "statusCode": 404,
    "error": "Not found",
    "message": "Account not found"
  }
  ```
</ResponseExample>
