> ## 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.9
    description: Sandbox
  - url: https://api.polygon.technology/v0.9
    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: 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
        chain:
          type: string
        createdAt:
          type: string
          format: date-time
        currencyName:
          type: string
        currencySymbol:
          type: string
        id:
          type: string
        walletAddress:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Token from POST /auth/token

````