---
title: "List Wallets"
method: GET
path: "/v1/customer-portal/wallets/"
tags: ["customer_portal", "wallets", "public"]
---

# List Wallets

`GET /v1/customer-portal/wallets/`

List wallets of the authenticated customer.

## Query parameters

- `page` integer — Page number, defaults to 1.
- `limit` integer — Size of a page, defaults to 10. Maximum is 100.
- `sorting` CustomerWalletSortProperty[], nullable — Sorting criterion. Several criteria can be used simultaneously and will be applied in order. Add a minus sign `-` before the criteria name to sort by descending order.

## Response `200`

Successful Response

- ListResourceCustomerWallet
  - `items` CustomerWallet[], required
    - `id` string, uuid4, required — The ID of the object.
    - `created_at` string, date-time, required — Creation timestamp of the object.
    - `modified_at` string, date-time, nullable, required — Last modification timestamp of the object.
    - `customer_id` string, uuid4, required — The ID of the customer that owns the wallet.
    - `balance` integer, required — The current balance of the wallet, in cents.
    - `currency` string, required — The currency of the wallet.
  - `pagination` Pagination, required
    - `total_count` integer, required
    - `max_page` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/polar/apis/polar-api.md) · [All operations](https://skmtc.net/polar/apis/polar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/polar/polar-api/revisions/f9688fd328d6/schema)
