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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://developers.fireblocks.com/feedback

```json
{
  "path": "/api-reference/compliance/list-vault-level-address-registry-opt-outs-paginated",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# List vault-level address registry opt-outs (paginated)

> Lists vault accounts that are opted out of the address registry for this workspace. Pagination uses `next` and `prev` cursors from the response. If `pageSize` is omitted, **50** items are returned per page; allowed range is **1–100** per request.



## OpenAPI

````yaml https://docs.fireblocks.com/api/v1/swagger.yaml get /address_registry/vaults
openapi: 3.0.0
info:
  title: Fireblocks API
  description: >
    Fireblocks provides a suite of applications to manage digital asset
    operations and a complete development platform to build your business on the
    blockchain.


    - Visit our website for more information: [Fireblocks
    Website](https://fireblocks.com)

    - Visit our developer docs: [Fireblocks
    DevPortal](https://developers.fireblocks.com)
  version: 1.6.2
  contact:
    email: developers@fireblocks.com
servers:
  - url: https://api.fireblocks.io/v1
    description: Fireblocks Production Environment Base URL
  - url: https://sandbox-api.fireblocks.io/v1
    description: Fireblocks Sandbox Environment Base URL
security: []
paths:
  /address_registry/vaults:
    get:
      tags:
        - Compliance
      summary: List vault-level address registry opt-outs (paginated)
      description: >-
        Lists vault accounts that are opted out of the address registry for this
        workspace. Pagination uses `next` and `prev` cursors from the response.
        If `pageSize` is omitted, **50** items are returned per page; allowed
        range is **1–100** per request.
      operationId: listAddressRegistryVaultOptOuts
      parameters:
        - name: pageCursor
          in: query
          required: false
          schema:
            type: string
            example: eyJvZmZzZXQiOjAsInBhZ2VTaXplIjoxMH0
          description: >-
            Opaque cursor from a previous response (`next` or `prev`). Omit for
            the first page.
        - name: pageSize
          in: query
          required: false
          description: >-
            Page size. Default **50** if omitted; must be between **1** and
            **100**.
          schema:
            type: integer
            format: int32
            minimum: 1
            maximum: 100
            default: 50
            example: 50
        - name: order
          in: query
          required: false
          description: >-
            Sort direction by vault account id. Omit for ascending; use the enum
            value for descending.
          schema:
            $ref: '#/components/schemas/AddressRegistryVaultListOrder'
      responses:
        '200':
          description: Page of vault opt-out rows
          headers:
            X-Request-ID:
              $ref: '#/components/headers/X-Request-ID'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddressRegistryListVaultOptOutsResponse'
        '400':
          description: Validation error (e.g. invalid or malformed pageCursor)
          headers:
            X-Request-ID:
              $ref: '#/components/headers/X-Request-ID'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddressRegistryError'
        default:
          $ref: '#/components/responses/Error'
      x-codeSamples:
        - lang: TypeScript
          source: >-
            const response:
            Promise<FireblocksResponse<AddressRegistryListVaultOptOutsResponse>>
            =
            fireblocks.compliance.listAddressRegistryVaultOptOuts(complianceApiListAddressRegistryVaultOptOutsRequest);
        - lang: Java
          source: >-
            CompletableFuture<ApiResponse<AddressRegistryListVaultOptOutsResponse>>
            response =
            fireblocks.compliance().listAddressRegistryVaultOptOuts(pageCursor,
            pageSize, order);
        - lang: Python
          source: >-
            response =
            fireblocks.compliance.list_address_registry_vault_opt_outs(page_cursor,
            page_size, order);
components:
  schemas:
    AddressRegistryVaultListOrder:
      type: string
      description: >-
        Sort order for the vault opt-out list by vault account id (ascending is
        the default when omitted).
      enum:
        - VAULT_OPT_OUT_LIST_ORDER_ASC
        - VAULT_OPT_OUT_LIST_ORDER_DESC
      default: VAULT_OPT_OUT_LIST_ORDER_ASC
      example: VAULT_OPT_OUT_LIST_ORDER_ASC
    AddressRegistryListVaultOptOutsResponse:
      type: object
      properties:
        total:
          type: integer
          format: int32
          description: >-
            Total number of vault accounts excluded from the address registry
            for your workspace.
          example: 2
        data:
          type: array
          items:
            $ref: '#/components/schemas/AddressRegistryVaultOptOutItem'
          example:
            - vaultAccountId: 10001
            - vaultAccountId: 10002
        next:
          type: string
          description: Opaque cursor for the next page; empty when there is no next page.
          example: eyJvZmZzZXQiOjEwLCJwYWdlU2l6ZSI6MTB9
        prev:
          type: string
          description: >-
            Opaque cursor for the previous page; empty when there is no previous
            page.
          example: ''
      required:
        - total
        - data
    AddressRegistryError:
      type: object
      description: Error body for address registry operations (4xx and 5xx).
      properties:
        code:
          type: integer
          description: >
            Application error code when present. For HTTP 400 on legal-entity
            lookup, distinguish: 4100 — request validation (e.g. missing, empty,
            or whitespace-only `address` after trim); 2140 — workspace not opted
            in to the address registry (`AR_OPT_IN_REQUIRED`). 2142 — not found
            (404). Other codes may appear, including on server errors.
          example: 2140
        message:
          type: string
          description: Human-readable error message
          example: Address registry opt-in required for this workspace.
      required:
        - message
    AddressRegistryVaultOptOutItem:
      type: object
      description: A vault account excluded from the address registry for your workspace.
      properties:
        vaultAccountId:
          type: integer
          format: int32
          description: Vault account ID.
          example: 10001
      required:
        - vaultAccountId
    ErrorSchema:
      type: object
      properties:
        message:
          type: string
        code:
          type: number
  headers:
    X-Request-ID:
      schema:
        type: string
      description: >-
        Unique ID correlated to the API request. Please provide it in any
        support ticket you create or on Github issues related to Fireblocks SDKs
  responses:
    Error:
      description: Error Response
      headers:
        X-Request-ID:
          $ref: '#/components/headers/X-Request-ID'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorSchema'

````