---
title: "Get Purses – Retrieves all purses and balances for an account."
method: GET
path: "/programs/{programCode}/accounts/{accountIdentifier}/purses"
tags: ["Purse"]
---

# Get Purses – Retrieves all purses and balances for an account.

`GET /programs/{programCode}/accounts/{accountIdentifier}/purses`

Retrieves all purses and balances for an account, including available and ledger balances. Returns purse details and transfer status.

## Path parameters

- `programCode` string, required
- `accountIdentifier` string, required

## Headers

- `X-GD-RequestId` string, required

## Response `200`

OK

- GetPursesResponse — Represents the response returned after retrieving all purses for an account. Contains a list of purses, balances, and transfer status.
  - `purses` Purse[], nullable — The array of purses for the account.
    - `purseIdentifier` string, nullable — The unique identifier for the purse.
    - `purseType` string, nullable — The type of purse (e.g., "Savings", "Spending", "Goal").
    - `purseDescription` string, nullable — A human-readable description of the purse.
    - `availableBalance` number, double — The available balance in the purse, representing funds that can be spent or withdrawn.
    - `ledgerBalance` number, double — The ledger balance in the purse, representing the total balance including pending transactions.
    - `availableBalanceAsOfDateTime` string, nullable — The date and time when the available balance was last updated.
    - `ledgerBalanceAsOfDateTime` string, nullable — The date and time when the ledger balance was last updated.
    - `isHidden` boolean — Indicates whether the purse is hidden from the user interface.
    - `status` string, nullable — The current status of the purse.
    - `goalAmount` number, double, nullable — The goal amount set for the purse, if applicable (e.g., for savings goals).
    - `goalDate` string, nullable — The target date for achieving the goal amount.
    - `iconName` string, nullable — The name of the icon associated with the purse for display purposes.
    - `createDate` string, date-time, nullable — The date and time when the purse was created.
    - `changeDate` string, date-time, nullable — The date and time when the purse was last changed or updated.
    - `purseNumber` string, nullable — The purse number, which may be used for display or reference purposes.
    - `interestRateTierIdentifier` string, nullable — The identifier for the interest rate tier applied to the purse, if applicable.
    - `interestRateTier` string, nullable — The name or description of the interest rate tier applied to the purse.
    - `interestYieldStartDate` string, nullable — The start date for interest yield calculation.
    - `interestYieldEndDate` string, nullable — The end date for interest yield calculation.
    - `APY` number, double, nullable — The annual percentage yield (APY) for the purse, if applicable.
    - `purseSubType` string, nullable — The subtype of the purse, providing additional categorization (e.g., "RoundUp", "EmergencyFund").
    - `interestRate` number, double, nullable — The interest rate applied to the purse, if applicable.
    - `isRoundUp` boolean — Indicates whether the purse is configured for round-up savings functionality.
  - `sccBalance` SccBalance — Represents the SCC (Secondary Credit Card) balance details for an account. Contains available credit, total credit, posted balance, and funding status. Used to provide credit and funding information for SCC-enabled accounts within a partner program.
    - `availableCredit` number, double — The available credit amount for the SCC account. Represents the portion of credit that can be used for transactions.
    - `totalCredit` number, double — The total credit limit for the SCC account. Represents the maximum credit available to the account.
    - `postedBalance` number, double — The posted balance for the SCC account. Represents the current balance after all posted transactions.
    - `fundingStatus` 'Funded' | 'NotFunded' — The funding status of the SCC account. Indicates whether the account is funded or not, as defined by Gd.Bos.DataTransfer.Enums.SccFundingStatus.
  - `purseBalanceTransferStatus` 'undefined' | 'ActivityNotFound' | 'Succeed' | 'InProgress' | 'Declined' | 'Failed' | 'InternalServerError', nullable — The transfer status for purse balances, if applicable.
  - `responseDetails` ResponseDetail[], nullable — Required: A list of response details providing status codes, descriptions, and additional information about the result of the operation.
    - `code` integer — The primary status or error code for the response (e.g., 200 for success, 400 for validation error).
    - `subCode` integer, nullable — An optional subcode providing more granular detail about the response or error.
    - `description` string, nullable — A human-readable description of the response, error, or status.
    - `url` string, nullable — A URL linking to documentation or a web page with more information about the response code.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `500` — Internal Server Error
- `503` — Service Unavailable

---

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