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

# Get Payout

> Retrieve details of an existing payout.

## Get Payout

Retrieve the full details of a payout by its ID, including current status and destination information.

### Endpoint

```
GET /v1/payouts/:id
```

### Request

<CodeGroup>
  ```bash cURL theme={null}
  curl https://api.thiqwave.com/v1/payouts/payout_1234567890 \
    -H "X-API-Key: your_api_key"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.thiqwave.com/v1/payouts/payout_1234567890', {
    method: 'GET',
    headers: {
      'X-API-Key': 'your_api_key',
    },
  });

  const payout = await response.json();
  console.log(payout);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://api.thiqwave.com/v1/payouts/payout_1234567890',
      headers={'X-API-Key': 'your_api_key'}
  )

  payout = response.json()
  print(payout)
  ```
</CodeGroup>

### Response

```json theme={null}
{
  "payout_id": "payout_1234567890",
  "quote_id": "quote_9876543210",
  "status": "completed",
  "source_currency": "USDT",
  "source_network": "ethereum",
  "source_amount": "500.00",
  "destination_currency": "AED",
  "destination_account": {
    "account_holder": "John Doe",
    "account_number": "0123456789",
    "bank_code": "ABUAAE3D",
    "country": "AE"
  },
  "destination_amount": 52250,
  "reference": "payout_ref_001",
  "created_at": "2026-04-09T14:30:00Z",
  "completed_at": "2026-04-09T14:35:00Z"
}
```

### Response Fields

| Field                  | Type              | Description                                                     |
| ---------------------- | ----------------- | --------------------------------------------------------------- |
| `payout_id`            | string            | Unique payout identifier.                                       |
| `quote_id`             | string            | Associated quote ID.                                            |
| `status`               | string            | Current status: `pending`, `processing`, `completed`, `failed`. |
| `source_currency`      | string            | Source stablecoin or fiat currency.                             |
| `source_network`       | string \| null    | Source blockchain (if stablecoin).                              |
| `source_amount`        | string \| integer | Amount in source currency.                                      |
| `destination_currency` | string            | Destination currency.                                           |
| `destination_account`  | object \| null    | Bank account details.                                           |
| `destination_address`  | string \| null    | Wallet address.                                                 |
| `destination_amount`   | string \| integer | Amount in destination currency.                                 |
| `reference`            | string            | Your reference for the payout.                                  |
| `created_at`           | string            | ISO 8601 timestamp of creation.                                 |
| `completed_at`         | string \| null    | ISO 8601 timestamp of completion.                               |

## Notes

* Check the `status` field to determine the current state of the payout.
* Use the `payout_id` to track the transaction in your system.
* Once status becomes `completed`, funds have been delivered.
