---
title: "List Lockbox Addresses"
method: GET
path: "/lockbox_addresses"
---

# List Lockbox Addresses

`GET /lockbox_addresses`

## Query parameters

- `cursor` string — Return the page of entries after this one.
- `limit` integer — Limit the size of the list that is returned. The default (and maximum) is 100 objects.
- `created_at.after` string, date-time — Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
- `created_at.before` string, date-time — Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
- `created_at.on_or_after` string, date-time — Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
- `created_at.on_or_before` string, date-time — Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
- `idempotency_key` string — Filter records to the one with the specified `idempotency_key` you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).

## Response `200`

Lockbox Address List

- LockboxAddressList — A list of Lockbox Address objects.
  - `data` LockboxAddress[], required — The contents of the list.
    - `address` object, nullable, required — The mailing address for the Lockbox Address. It will be present after Increase generates it.
      - `city` string, required — The city of the address.
      - `line1` string, required — The first line of the address.
      - `line2` string, required — The second line of the address.
      - `postal_code` string, required — The postal code of the address.
      - `state` string, required — The two-letter United States Postal Service (USPS) abbreviation for the state of the address.
    - `created_at` string, date-time, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Lockbox Address was created.
    - `description` string, nullable, required — The description you choose for the Lockbox Address.
    - `id` string, required — The Lockbox Address identifier.
    - `idempotency_key` string, nullable, required — The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).
    - `status` 'pending' | 'active' | 'disabled' | 'canceled', required — The status of the Lockbox Address.
    - `type` 'lockbox_address', required — A constant representing the object's type. For this resource it will always be `lockbox_address`.
  - `next_cursor` string, nullable, required — A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.

## Other responses

- `4XX` — Error
- `5XX` — Error

---

[API](https://skmtc.net/increase/apis/increase-api-2.md) · [All operations](https://skmtc.net/increase/apis/increase-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/increase/increase-api-2/versions/e968bcd4dcf9/schema)
