---
title: "Card Balance History"
method: GET
path: "/cards/{cardId}/balance-history"
tags: ["Card"]
---

# Card Balance History

`GET /cards/{cardId}/balance-history`

## Path parameters

- `cardId` string, uuid, required

## Query parameters

- `page` string
- `limit` string
- `toDate` string, date
- `fromDate` string, date
- `type` 'DEPOSIT' | 'WITHDRAWAL'
- `txnHash` string

## Headers

- `Accept-Version` string, required — Specifies the API version to use for this request.

## Response `200`

Card transactions

- object
  - `items` object[]
    - `id` string, required — Reap’s internal ID for the balance change record.
    - `date` string, required — Date and time of the balance change, formatted as **YYYY-MM-DD**
    - `type` 'DEPOSIT' | 'WITHDRAWAL', required — Specifies the type of balance change. Possible values: **DEPOSIT**: Indicates a positive change in the card’s **availableCredit**. **WITHDRAWAL**: Indicates a negative change in the card’s **availableCredit**
    - `source` 'EXTERNAL_CRYPTO_WALLET' | 'MASTER_ACCOUNT_BALANCE' | 'CARD_BALANCE', required — Specifies the origin of the funds contributing to this balance change. Possible values: **EXTERNAL_CRYPTO_WALLET**: From an external crypto wallet. **MASTER_ACCOUNT_BALANCE**: From the master account in your card program. **CARD_BALANCE**: From a specific card’s balance in your card program.
    - `destination` 'EXTERNAL_CRYPTO_WALLET' | 'MASTER_ACCOUNT_BALANCE' | 'CARD_BALANCE', required — Specifies where the balance change is applied.Possible values: **EXTERNAL_CRYPTO_WALLET**: From an external crypto wallet. **MASTER_ACCOUNT_BALANCE**: From the master account in your card program. **CARD_BALANCE**: From a specific card’s balance in your card program.
    - `status` string, required — Current status of the transaction. Possible values: **PENDING**, **COMPLETED**.
    - `amount` number, float, required — The amount of the balance change.
    - `currency` string, required — Currency of the balance change. Possible values: **HKD**, **USD**.
    - `cryptoMeta` object, nullable — Details for crypto transactions. **Note**: only if **source** or **destination** is **EXTERNAL_CRYPTO_WALLET**
      - `currency` string, required — Digital currency type. Possible value: **USDC**
      - `amount` number, float, required — The digital currency type. Currently, only **USDC** is supported.
      - `network` string, required — The cryptocurrency network used. Currently, only POLYGON is supported.
      - `wallet` string, required — Wallet address associated with the change in balance.
      - `service_fee` string, required — The total amount of the transaction service fee.
      - `service_fee_percentage` string, required — Percentage of the transaction fee.
    - `txnHash` string, nullable — Transaction hash associated with the balance change.
    - `exchangeRate` string, nullable — Exchange rate used for converting stablecoins to fiat currency, or vice versa.
  - `meta` object — Pagination metadata for the response.
    - `itemCount` number, float, required — The number of items returned on the current page.
    - `totalItems` number, float, required — The total number of items across all pages.
    - `itemsPerPage` number, float, required — The maximum number of items that can be returned per page.
    - `totalPages` number, float, required — The total number of pages available based on the **itemsPerPage** and **totalItems**.
    - `currentPage` number, float, required — The current page number in the paginated response.

---

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