> ## 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.

# Get Payout Destination

> Retrieve a specific payout destination

## Path Parameters

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

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

<ParamField path="destination_id" type="string" required>
  The payout destination's external ID (starts with `dest_`)
</ParamField>

## Response

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

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

<ResponseField name="beneficiary_id" type="string">
  Parent beneficiary ID
</ResponseField>

<ResponseField name="country" type="string">
  Country code
</ResponseField>

<ResponseField name="payout_method" type="string">
  Payment method: `ach`, `wire`, `spei`, etc.
</ResponseField>

<ResponseField name="type" type="string">
  Destination type: `bank_account` or `wallet`
</ResponseField>

<ResponseField name="label" type="string">
  User-friendly label
</ResponseField>

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

<ResponseField name="network" type="string">
  Blockchain network (for crypto destinations)
</ResponseField>

<ResponseField name="status" type="string">
  Status: `active`, `disabled`, or `inactive`
</ResponseField>

<ResponseField name="account_name" type="string">
  Bank account holder name
</ResponseField>

<ResponseField name="account_number_last4" type="string">
  Masked account number (e.g., `****6789`)
</ResponseField>

<ResponseField name="account_type" type="string">
  Account type: `checking` or `savings`
</ResponseField>

<ResponseField name="routing_number" type="string">
  Bank routing number
</ResponseField>

<ResponseField name="swift_code" type="string">
  SWIFT/BIC code
</ResponseField>

<ResponseField name="iban_masked" type="string">
  Masked IBAN (for international accounts)
</ResponseField>

<ResponseField name="clabe_last4" type="string">
  Masked CLABE number (for Mexican accounts)
</ResponseField>

<ResponseField name="wallet_address_masked" type="string">
  Masked wallet address (for crypto destinations)
</ResponseField>

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

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

<ResponseField name="updated" type="string">
  ISO 8601 timestamp when last updated
</ResponseField>

## Response Example

```json theme={null}
{
  "id": "dest_1234567890abcdef",
  "object": "payout_destination",
  "beneficiary_id": "bene_1234567890abcdef",
  "country": "US",
  "payout_method": "ach",
  "type": "bank_account",
  "label": "Main Account",
  "currency": "USD",
  "network": null,
  "status": "active",
  "account_name": "John Doe",
  "account_number_last4": "****6789",
  "account_type": "checking",
  "routing_number": "021000021",
  "swift_code": null,
  "iban_masked": null,
  "clabe_last4": null,
  "wallet_address_masked": null,
  "is_default": true,
  "created": "2024-01-15T10:00:00Z",
  "updated": "2024-01-15T10:00:00Z"
}
```
