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

# List Payout Destinations

> Retrieve all payout destinations for a beneficiary

## Path Parameters

<ParamField path="account_id" type="string" required>
  The account's external ID (starts with `acct_`)
</ParamField>

<ParamField path="beneficiary_id" type="string" required>
  The beneficiary's external ID (starts with `bene_`)
</ParamField>

## Query Parameters

<ParamField query="statuses" type="array">
  Filter by status (e.g., `active`, `disabled`, `inactive`)
</ParamField>

<ParamField query="start_date" type="string">
  Filter destinations created on or after this date (ISO 8601 format)
</ParamField>

<ParamField query="end_date" type="string">
  Filter destinations created before this date (ISO 8601 format)
</ParamField>

<ParamField query="page" type="integer" default="1">
  Page number (minimum 1)
</ParamField>

<ParamField query="size" type="integer" default="10">
  Items per page (1-100)
</ParamField>

## Response

<ResponseField name="items" type="array">
  Array of payout destination objects

  <Expandable title="Payout Destination Fields">
    <ResponseField name="id" type="string">
      Payout destination identifier (starts with `dest_`)
    </ResponseField>

    <ResponseField name="object" type="string">
      Always returns `"payout_destination"`
    </ResponseField>

    <ResponseField name="country" type="string">
      Payout country
    </ResponseField>

    <ResponseField name="payout_method" type="string">
      Payout method
    </ResponseField>

    <ResponseField name="type" type="string">
      Destination type
    </ResponseField>

    <ResponseField name="currency" type="string">
      Currency
    </ResponseField>

    <ResponseField name="status" type="string">
      Destination status
    </ResponseField>

    <ResponseField name="is_default" type="boolean">
      Whether this is the default destination
    </ResponseField>

    <ResponseField name="created" type="string">
      ISO 8601 timestamp
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="page" type="integer">
  Current page number
</ResponseField>

<ResponseField name="size" type="integer">
  Items per page
</ResponseField>

<ResponseField name="total" type="integer">
  Total number of items
</ResponseField>

<ResponseField name="pages" type="integer">
  Total number of pages
</ResponseField>

## Response Example

```json theme={null}
{
  "items": [
    {
      "id": "dest_1234567890abcdef",
      "object": "payout_destination",
      "country": "US",
      "payout_method": "ach",
      "type": "bank_account",
      "label": null,
      "currency": "USD",
      "network": null,
      "status": "active",
      "account_number_last4": "7890",
      "is_default": true,
      "created": "2024-01-15T10:00:00Z"
    }
  ],
  "page": 1,
  "size": 10,
  "total": 1,
  "pages": 1
}
```
