# List deposit wallets for an omnibus (paginated)

Endpoint: GET /v1/domains/{domainId}/omnibus/{omnibusId}/deposit-wallets

## Path parameters:

  - `domainId` (string, required)

  - `omnibusId` (string, required)

## Query parameters:

  - `page` (integer)

  - `size` (integer)

  - `search` (string)
    Case-insensitive substring match on the owning tenant's alias. Terms shorter than 3 characters return an empty page (the trigram index cannot serve them).

  - `custodyAccountIds` (array)
    Restricts results to wallets whose custodyAccountId is in this list. Combines with other filters (AND semantics). An empty list is treated as absent.

## Response 200 fields (application/json):

  - `content` (array, required)
    Deposit wallet summaries in this page

  - `content.id` (string, required)
    Internal deposit wallet identifier

  - `content.custodyAccountId` (string, required)
    Custody account backing this deposit wallet

  - `content.tenantId` (string, required)
    Tenant that owns this deposit wallet

  - `content.alias` (string, required)
    Owning tenant's alias (for display/search)

  - `content.status` (string, required)
    Enum: "CREATING", "ACTIVE", "INACTIVE"

  - `content.omnibusId` (string, required)
    Omnibus structure this deposit wallet belongs to

  - `page` (object, required)

  - `page.number` (integer, required)
    Current page number (0-indexed)

  - `page.size` (integer, required)
    Number of elements per page

  - `page.totalElements` (integer, required)
    Total number of elements across all pages

  - `page.totalPages` (integer, required)
    Total number of pages

  - `page.first` (boolean, required)
    Whether this is the first page

  - `page.last` (boolean, required)
    Whether this is the last page


