> ## 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 Payment Destination

> Fetch a single payment destination with masked account fields

Fetches a single payment destination with masked account fields. No request body.

## Path Parameters

<ParamField path="account_id" type="string" required>
  Id of the parent account (e.g. `acct_...`).
</ParamField>

<ParamField path="beneficiary_id" type="string" required>
  Id of the parent beneficiary (e.g. `bene_...`).
</ParamField>

<ParamField path="id" type="string" required>
  Destination id (e.g. `dest_…`).
</ParamField>

## Response

Returns the full `payment_destination` object. Account identifiers are always masked.

<ResponseField name="id" type="string">
  Destination id (e.g. `dest_…`).
</ResponseField>

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

<ResponseField name="type" type="enum">
  Always `bank_account`.
</ResponseField>

<ResponseField name="status" type="enum">
  `active`, `pending`, or `disabled`.
</ResponseField>

<ResponseField name="payment_method" type="enum | null">
  Primary payment method: `wire`, `ach`, `fedwire`, `spei`, `pix`, `manual`.
</ResponseField>

<ResponseField name="payment_methods" type="array">
  All supported payment methods (defaults to `[]`).
</ResponseField>

<ResponseField name="account_number_last4" type="string | null">
  Masked account number, e.g. `****7890`.
</ResponseField>

<ResponseField name="clabe_last4" type="string | null">
  Masked CLABE (Mexico).
</ResponseField>

<ResponseField name="iban_masked" type="string | null">
  Masked IBAN, e.g. `GB29****6819`.
</ResponseField>

<ResponseField name="pix_key_masked" type="string | null">
  Masked PIX key (Brazil).
</ResponseField>

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

The response also echoes `country`, `currency`, `label`, `account_name`, `swift_code`, `routing_number`, `bank_name`, `bank_address`, the correspondent-bank fields, `account_holder`, and the standard envelope fields (`object`, `created`, `updated`, `created_by`, `updated_by`).

<ResponseExample>
  ```json Response theme={null}
  {
    "object": "payment_destination",
    "id": "dest_8kpw2x7a3b9c1e5f2d4g6h8j",
    "beneficiary_id": "bene_5tql9z7a3b9c1e5f2d4g6h8j",
    "country": "GB",
    "payment_method": "wire",
    "type": "bank_account",
    "label": "Globex GBP",
    "currency": "GBP",
    "status": "active",
    "account_name": "Globex Limited",
    "payment_methods": ["wire"],
    "account_number_last4": "****6819",
    "clabe_last4": null,
    "iban_masked": "GB29****6819",
    "pix_key_masked": null,
    "is_default": true,
    "created": "2026-05-01T10:05:00Z",
    "updated": null,
    "created_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4",
    "updated_by": null
  }
  ```
</ResponseExample>
