Skip to main content
GET
/
vendor
/
payout-accounts
curl 'http://localhost:9000/vendor/payout-accounts' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "payout_accounts": [
    {
      "id": "pacc_01HXYZ",
      "status": "active",
      "onboarding": { "id": "onb_01HXYZ", "data": { "url": "https://connect.stripe.com/setup/..." } },
      "created_at": "2026-01-15T10:00:00.000Z"
    }
  ],
  "count": 1,
  "offset": 0,
  "limit": 20
}
Returns the payout accounts linked to the current seller, each with its onboarding.
A seller typically has at most one payout account, so the first entry is usually the one you need.

Query parameters

limit
number
default:"20"
Maximum number of items to return.
offset
number
default:"0"
Number of items to skip.
order
string
Field to sort by, prefixed with - for descending order.
fields
string
Comma-separated fields to include in the response.

Response

payout_accounts
object[]
count
number
Total number of payout accounts.
offset
number
Number of items skipped.
limit
number
Maximum number of items returned.
curl 'http://localhost:9000/vendor/payout-accounts' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "payout_accounts": [
    {
      "id": "pacc_01HXYZ",
      "status": "active",
      "onboarding": { "id": "onb_01HXYZ", "data": { "url": "https://connect.stripe.com/setup/..." } },
      "created_at": "2026-01-15T10:00:00.000Z"
    }
  ],
  "count": 1,
  "offset": 0,
  "limit": 20
}