> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mercurjs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Payout Accounts

> List the seller's payout accounts.

Returns the payout accounts linked to the current seller, each with its onboarding.

<Note>
  A seller typically has at most one payout account, so the first entry is usually the one you need.
</Note>

## Query parameters

<ParamField query="limit" type="number" default="20">
  Maximum number of items to return.
</ParamField>

<ParamField query="offset" type="number" default="0">
  Number of items to skip.
</ParamField>

<ParamField query="order" type="string">
  Field to sort by, prefixed with `-` for descending order.
</ParamField>

<ParamField query="fields" type="string">
  Comma-separated fields to include in the response.
</ParamField>

## Response

<ResponseField name="payout_accounts" type="object[]">
  <Expandable title="properties">
    <ResponseField name="id" type="string">The payout account's ID.</ResponseField>
    <ResponseField name="status" type="enum">One of `pending`, `active`, `restricted`, `rejected`.</ResponseField>
    <ResponseField name="data" type="object">Provider-specific account data.</ResponseField>
    <ResponseField name="context" type="object">Context passed when the account was created.</ResponseField>
    <ResponseField name="onboarding" type="object">The account's onboarding record (`id`, `data`, `context`).</ResponseField>
    <ResponseField name="created_at" type="string">Creation timestamp.</ResponseField>
    <ResponseField name="updated_at" type="string">Update timestamp.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="count" type="number">Total number of payout accounts.</ResponseField>
<ResponseField name="offset" type="number">Number of items skipped.</ResponseField>
<ResponseField name="limit" type="number">Maximum number of items returned.</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl 'http://localhost:9000/vendor/payout-accounts' \
    -H 'Authorization: Bearer <token>' \
    -H 'x-seller-id: <seller_id>'
  ```

  ```ts JS Client theme={null}
  const { payout_accounts } = await client.vendor.payoutAccounts.query()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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
  }
  ```
</ResponseExample>
