---
title: "List Envelopes"
method: GET
path: "/sign/envelopes"
tags: ["Sign"]
---

# List Envelopes

`GET /sign/envelopes`

The **List Envelopes** endpoint returns all envelopes associated with an application in an account.

## Query parameters

- `pageAfter` string
- `pageBefore` string

## Response `200`

The List Envelopes endpoint returns all envelopes associated with your account. Envelopes are returned in an `items` array within the JSON response.

If additional envelopes are available, the initial response will include a `nextPage` field containing a string token. If there are no more envelopes, this field will be omitted. The token serves as a marker for the last item returned and can be used as the starting point for your next request.

The List Envelopes endpoint uses cursor-based pagination for optimal performance and consistency when handling large numbers of envelopes and frequent data updates.

- EnvelopeList — #### Fields
  - `items` Envelope[] — An array of envelopes associated with the client's account.
    - `ID` string, uuid — A unique UUIDv4 string that identifies the envelope in the Nitro system.
    - `createdAt` string, date-time — UTC timestamp indicating when the envelope was created.
    - `lastModifiedAt` string, date-time — UTC timestamp indicating the last time the envelope was updated. Matches `createdAt` at the time of creation.
    - `name` string — The name of the envelope.
    - `status` 'drafted' | 'sent' | 'processing' | 'sealed' | 'rejected' | 'cancelled' | 'deleted' — The internal status of the envelope. Defaults to drafted on creation.
  - `nextPage` string — A cursor token indicating the position of the last item in the `items` array, used to retrieve the next page of results.

## Other responses

- `401` — Unauthorized - Invalid or missing JWT token

---

[API](https://skmtc.net/gonitro/apis/nitro-sign-public-api.md) · [All operations](https://skmtc.net/gonitro/apis/nitro-sign-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gonitro/nitro-sign-public-api/versions/26e3043a365b/schema)
