Skip to main content
GET
/
v1
/
payout-accounts
List payout accounts
curl --request GET \
  --url https://api.ledger.so/v1/payout-accounts \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "items": [
      {
        "id": "pa_abc123",
        "customerId": "cus_abc123",
        "type": "us_bank",
        "label": "My checking account",
        "details": {
          "routingNumber": "021000021",
          "accountNumber": "****6789"
        },
        "createdAt": "2025-03-10T14:00:00Z"
      }
    ],
    "nextCursor": null
  }
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token. Format: ld_<env>_<prefix>_<secret> where <env> is test or live.

Query Parameters

limit
integer
default:50

Maximum number of items to return. Defaults to 50, maximum 200.

Required range: 1 <= x <= 200
cursor
string

Pagination cursor from a previous response's nextCursor field.

customerId
string

Filter by customer ID.

Response

A paginated list of payout accounts

ok
boolean
required

Indicates the request was successful.

data
object