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

> Retrieve detailed information about a specific outgoing payment

## Path Parameters

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

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

## Response

Returns payout with nested beneficiary and destination details.

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

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

<ResponseField name="beneficiary" type="object">
  Beneficiary summary details
</ResponseField>

<ResponseField name="payout_destination" type="object">
  Payout destination summary details
</ResponseField>

<ResponseField name="amount" type="string">
  Payout amount (decimal)
</ResponseField>

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

<ResponseField name="amount_in_usd" type="string">
  Amount converted to USD
</ResponseField>

<ResponseField name="status" type="string">
  Payout status: `pending_approval`, `pending`, `processing`, `completed`, or `failed`
</ResponseField>

<ResponseField name="provider_reference_id" type="string">
  Provider reference ID
</ResponseField>

<ResponseField name="initiated_at" type="string">
  ISO 8601 timestamp when payout was initiated
</ResponseField>

<ResponseField name="completed_at" type="string">
  ISO 8601 timestamp when payout completed
</ResponseField>

<ResponseField name="failed_at" type="string">
  ISO 8601 timestamp when payout failed
</ResponseField>

<ResponseField name="failed_reason" type="string">
  Reason for failure
</ResponseField>

<ResponseField name="note" type="string">
  Optional note
</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": "po_r4ft5s7cuvimpoloqd8gwksw",
  "object": "payout",
  "beneficiary": {
    "id": "bene_9gt1ummgx127biovlurm9mq2",
    "object": "beneficiary",
    "beneficiary_type": "individual",
    "first_name": "John",
    "last_name": "Doe",
    "display_name": "John Doe",
    "status": "active",
    "verified": true,
    "created": "2024-01-10T00:00:00Z"
  },
  "payout_destination": {
    "id": "dest_1234567890abcdef",
    "object": "payout_destination",
    "country": "US",
    "payout_method": "ach",
    "type": "bank_account",
    "currency": "USD",
    "status": "active",
    "account_number_last4": "7890",
    "is_default": true,
    "created": "2024-01-10T00:00:00Z"
  },
  "amount": "100.00",
  "currency": "USD",
  "amount_in_usd": "100.00",
  "status": "completed",
  "provider_reference_id": "ref_123",
  "initiated_at": "2024-01-15T10:00:00Z",
  "completed_at": "2024-01-15T10:05:00Z",
  "failed_at": null,
  "failed_reason": null,
  "note": "Monthly payment",
  "created": "2024-01-15T10:00:00Z",
  "updated": "2024-01-15T10:05:00Z"
}
```
