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

# Get ramp transfer receipt PDF

> Download a PDF receipt for a ramp transfer.

Generates and retrieves a PDF receipt for a ramp transfer. Requires an API key with access level 2 or higher.

## Path parameters

<ParamField path="transferId" type="string" required>
  Unique identifier of the ramp transfer.
</ParamField>

## Response

Returns binary PDF content (`application/pdf`).

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/virtual-wallets/ramps/transfer/evt_a1b2c3d4e5f6/receipt/pdf" \
    -H "x-api-key: $CRYPTOMATE_API_KEY" \
    --output receipt.pdf
  ```
</RequestExample>

<ResponseExample>
  ```text 200 OK theme={null}
  Binary PDF content (application/pdf).
  ```

  ```json 412 Precondition Failed theme={null}
  {
    "code": "VAL",
    "message": "Could not get transfer receipt due to status awaiting_funds"
  }
  ```
</ResponseExample>
