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

# Payouts

<Info>To get access to payouts reach out to us at [hi@paycashless.com](mailto:hi@paycashless.com)</Info>

Payouts allows you to send money to any third party in their local currency.\
This has multiple use cases such as bulk payments, fintech disbursements, payroll etc.

### Supported currencies

| Currency Code | Base Unit | Description    |
| ------------- | --------- | -------------- |
| `NGN`         | Kobo      | Nigerian Naira |

<RequestExample>
  ```json payout_body.json theme={null}
  {
    "reference": "payout_12345",
    "amount": {
      "value": 50000,
      "currency": "NGN"
    },
    "destinationAccountNumber": "1234567890",
    "bankId": "044",
    "narration": "Vendor payment",
    "callbackUrl": "https://yourwebsite.com/webhook",
    "metadata": {
      "vendorId": "V12345"
    }
  }
  ```
</RequestExample>

<ResponseExample>
  ```json payout_response.json theme={null}
  {
    "id": "po_12345abcdef",
    "status": "pending",
    "reference": "payout_12345"
  }
  ```
</ResponseExample>
