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

# List customer wallets

> Lists the crypto wallets provisioned for a customer (one per asset/chain),
with cursor-based pagination. Returns an empty list if none have been
provisioned yet.



## OpenAPI

````yaml /api-reference/openapi.yaml get /customers/{id}/wallets
openapi: 3.0.3
info:
  title: Polygon OMS Public API
  version: v26.05.28-0001
  description: >-
    Unified API for moving money between crypto and fiat. Three ways to move
    money: Transactions (instant, wallet or card funded, including Cash-In for
    in-person cash deposits), Deposit Addresses (reusable crypto deposit
    configurations), and Virtual Accounts (dedicated bank accounts that
    auto-convert fiat to crypto). Standard transactions follow a two-step flow:
    create a Quote (pricing), then create a Transaction (execution). Cash-in
    codes generate a one-time deposit code for in-person cash deposits at retail
    locations.
  contact:
    name: Polygon OMS
    url: https://oms.polygon.technology
servers:
  - url: https://sandbox-api.polygon.technology/v0.10
    description: Sandbox
  - url: https://api.polygon.technology/v0.10
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Auth
    description: Authentication via FrontEgg
  - name: Customers
    description: Customer management and KYC
  - name: Customer
  - name: Wallet
  - name: Quote
  - name: Transaction
  - name: Webhook
  - name: CashIns
  - name: CashLocation
  - name: Sandbox
  - name: VirtualAccount
  - name: Counterparty
  - name: ExternalAccount
  - name: DepositAddress
  - name: Simulation
paths:
  /customers/{id}/wallets:
    get:
      tags:
        - Wallet
      summary: List customer wallets
      description: >-
        Lists the crypto wallets provisioned for a customer (one per
        asset/chain),

        with cursor-based pagination. Returns an empty list if none have been

        provisioned yet.
      operationId: listCustomerWallets
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
        - in: query
          name: limit
          required: false
          schema:
            format: int32
            type: integer
        - in: query
          name: startingAfter
          required: false
          schema:
            type: string
        - description: Free-text search. Matches wallet id or on-chain address.
          in: query
          name: search
          required: false
          schema:
            type: string
        - description: Alias for `search`.
          in: query
          name: q
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WalletList'
          description: The request has succeeded.
components:
  schemas:
    WalletList:
      description: A list of a customer's wallets.
      properties:
        data:
          properties:
            walletAddresses:
              items:
                $ref: '#/components/schemas/CustomerWallet'
              type: array
          type: object
      type: object
    CustomerWallet:
      description: >-
        A single customer wallet: one asset on one chain, with its balance and
        address.
      properties:
        assetId:
          type: string
        balance:
          type: string
        blockchainAsset:
          $ref: '#/components/schemas/BlockchainAsset'
        chain:
          type: string
        createdAt:
          type: string
          format: date-time
        currencyName:
          type: string
        currencySymbol:
          type: string
        id:
          type: string
        walletAddress:
          type: string
      type: object
    BlockchainAsset:
      description: >-
        On-chain identity for an asset: the chain it lives on, the wire-level
        protocol (EVM, SVM, Sui), and the token identifier within that chain.
      properties:
        chainId:
          description: >-
            Chain identifier within the protocol (for example, an EVM chain ID
            or a Solana cluster name).
          type: string
        protocol:
          $ref: '#/components/schemas/BlockchainProtocol'
        tokenId:
          description: >-
            Token identifier on the chain (for example, an ERC-20 contract
            address or an SPL mint address). Use the chain's canonical
            representation for the native asset.
          type: string
      required:
        - protocol
        - chainId
        - tokenId
      type: object
    BlockchainProtocol:
      description: >-
        Wire-level protocol family for a chain. `evm` covers Ethereum-compatible
        chains, `svm` covers the Solana virtual machine, and `sui` covers the
        Sui Move VM.
      enum:
        - evm
        - svm
        - sui
      type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Token from POST /auth/token

````