Skip to main content
GET
/
v1
/
payout-accounts
/
{id}
Get a payout account
curl --request GET \
  --url https://api.ledger.so/v1/payout-accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "id": "pa_abc123",
    "customerId": "cus_abc123",
    "type": "us_bank",
    "createdAt": "2023-11-07T05:31:56Z",
    "label": "My checking account",
    "details": {}
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Payout account details

ok
boolean
required

Indicates the request was successful.

data
object