---
title: "Retrieve Plaid Ledger balance"
method: POST
path: "/transfer/ledger/get"
tags: ["plaid"]
---

# Retrieve Plaid Ledger balance

`POST /transfer/ledger/get`

Use the `/transfer/ledger/get` endpoint to view a balance on the ledger held with Plaid.

## Request body

- TransferLedgerGetRequest — Defines the request schema for `/transfer/ledger/get`
  - `client_id` string — Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
  - `secret` string — Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.
  - `ledger_id` string, nullable — Specify which ledger balance to get. Customers can find a list of `ledger_id`s in the Accounts page of your Plaid Dashboard. If this field is left blank, this will default to the id of the default ledger balance.
  - `originator_client_id` string, nullable — Client ID of the end customer.

## Response `200`

OK

- TransferLedgerGetResponse — Defines the response schema for `/transfer/ledger/get`
  - `ledger_id` string, required — The unique identifier of the Ledger that was returned.
  - `balance` TransferLedgerBalance, required — Information about the balance of the ledger held with Plaid.
    - `available` string, required — The amount of this balance available for use (decimal string with two digits of precision e.g. "10.00").
    - `pending` string, required — The amount of pending funds that are in processing (decimal string with two digits of precision e.g. "10.00").
  - `name` string, required — The name of the Ledger
  - `is_default` boolean, required — Whether this Ledger is the client's default ledger.
  - `request_id` string, required — A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.

## Other responses

- `default` — Error response

---

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