> ## 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.13
    description: Sandbox
  - url: https://api.polygon.technology/v0.13
    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: CashIns
  - name: CashLocation
  - name: Sandbox
  - name: VirtualAccount
  - name: Counterparty
  - name: ExternalAccount
  - name: Reference
  - name: DepositAddress
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:
        - name: id
          in: path
          required: true
          description: Customer ID (`cst_` prefix).
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Maximum number of results per page.
          schema:
            type: integer
            format: int32
        - name: startingAfter
          in: query
          required: false
          description: Return results after this ID (cursor pagination).
          schema:
            type: string
        - name: search
          in: query
          required: false
          description: Free-text search. Matches wallet id or on-chain address.
          schema:
            type: string
        - name: q
          in: query
          required: false
          description: Alias for `search`.
          schema:
            type: string
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerWalletList'
components:
  schemas:
    CustomerWalletList:
      type: object
      properties:
        data:
          type: object
          properties:
            walletAddresses:
              type: array
              items:
                $ref: '#/components/schemas/CustomerWallet'
      description: Envelope for the customer wallet list response.
    CustomerWallet:
      type: object
      properties:
        id:
          allOf:
            - $ref: '#/components/schemas/typeId'
          description: Unique identifier.
        customerId:
          allOf:
            - $ref: '#/components/schemas/typeId'
          description: |-
            The customer that owns the wallet. `cst_` prefix. Always present in
            project-wide `GET /wallets` responses so each row is attributable.
        walletAddress:
          type: string
          description: On-chain wallet address.
        currencySymbol:
          type: string
          description: Display symbol of the currency.
        currencyName:
          type: string
          description: Display name of the currency.
        assetId:
          type: string
          description: Asset identifier.
        chain:
          type: string
          description: Chain the wallet lives on.
        blockchainAsset:
          $ref: '#/components/schemas/BlockchainAsset'
        balance:
          type: string
          description: Current balance.
        createdAt:
          type: string
          format: date-time
          description: When the resource was created.
      description: >-
        A single customer wallet: one asset on one chain, with its balance and
        address.
    typeId:
      type: string
      pattern: >-
        ^[a-z]+_([0-9a-hjkmnp-tv-z]{26}|[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})$
      description: >-
        Public TypeID, e.g. `txn_01h455vb4pex5vsknk084sn02q`; legacy UUID
        suffixes are accepted until non-v7 rows are retired.
      x-go-type: string
    BlockchainAsset:
      type: object
      required:
        - protocol
        - chainId
        - tokenId
      properties:
        protocol:
          $ref: '#/components/schemas/BlockchainProtocol'
        chainId:
          type: string
        tokenId:
          type: string
    BlockchainProtocol:
      type: string
      enum:
        - evm
        - svm
        - sui
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Token from POST /auth/token

````