> ## Documentation Index
> Fetch the complete documentation index at: https://opensandbox-oc-s-762ac928075c46d2828bcb22.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Signed Download

Download a file using a signed URL. No authentication required — the signature and expiry are validated from query parameters.

Generate a signed URL first via [Generate Download URL](/api-reference/files/generate-download-url).

<ParamField path="id" type="string" required>
  Sandbox ID
</ParamField>

<ParamField query="path" type="string" required>
  Absolute path to the file
</ParamField>

<ParamField query="expires" type="string" required>
  Unix timestamp when the URL expires
</ParamField>

<ParamField query="signature" type="string" required>
  HMAC-SHA256 signature
</ParamField>

<ResponseExample>
  ```text 200 theme={null}
  (file content with Content-Length header)
  ```

  ```json 403 theme={null}
  {
    "error": "signed URL has expired"
  }
  ```
</ResponseExample>
