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

# List deliverables

> Returns a list of all deliverables for an envelope.

Returns a list of all deliverables for an envelope. Every completed envelope has at least one deliverable, created automatically when the envelope completes. Additional deliverables may exist if created via the [Create Deliverable](/docs/api/resources/deliverables/create) endpoint.

Results are sorted chronologically by creation date, with the earliest deliverable appearing first.

### Path Parameters

<ParamField path="envelope_id" type="string" required={true}>
  The unique identifier of the envelope, in UUID format.
</ParamField>

### Query Parameters

<ParamField query="limit" type="integer">
  The maximum number of objects to return in the response, up to 20. The default is 20.

  <Note>For certain use cases we can increase the limit. Please contact [support](mailto:support@signatureapi.com).</Note>
</ParamField>

### Returns

Returns a `200 OK` status code along with a [paginated](/docs/api/pagination) list of [deliverable objects](/docs/api/resources/deliverables/object) if successful, or an [error](/docs/api/errors) otherwise.

<RequestExample>
  ```json Request theme={null}
  // GET https://api.signatureapi.com/v1/envelopes/{envelope_id}/deliverables
  // X-API-Key: key_test_...
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  // HTTP Status Code 200

  {
    "links": {
      "next": null,
      "previous": null
    },
    "data": [
      {
        "id": "del_LXRDwyTeJDVrWXmjwxsAGPq",
        "name": null,
        "envelope_id": "4ec99c57-4430-4d73-8afd-912dcf4b5880",
        "type": "standard",
        "status": "generated",
        //...
      },
      {
        "id": "del_MYSExzUfKEWsXYnkywsAGQr",
        "name": "hr_pack",
        "envelope_id": "4ec99c57-4430-4d73-8afd-912dcf4b5880",
        "type": "simple",
        "status": "generated",
        //...
      }
    ]
  }
  ```
</ResponseExample>
