> For the complete documentation index, see [llms.txt](https://developers.munzen.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.munzen.io/payouts/payout-callbacks.md).

# Payout Callbacks

First, read general information about callbacks: [Callbacks (Webhooks)](/api-overview/callbacks-webhooks.md).

We will send a callback on the following events:

| Event            | Description                                            |
| ---------------- | ------------------------------------------------------ |
| `status_changed` | This event is triggered when the payout status changes |

Since we start processing your payout request, we will send a callback to your server. Here is an example of callbacks:

{% tabs %}
{% tab title="status\_changed" %}

```
{
  "type": "payout",
  "event": "status_changed",
  "data": {
    "id": "01894a4e-d138-723a-835f-cec13d63b763",
    "customer_external_id": "example@gmail.com",
    "currency": "USDTMATIC",
    "transaction_hash": "0xebd868859d3d0736f724691bb1a4c41478b12914cdbde31159099af537f8efa7",
    "transaction_risk_score": null,
    "amount_requested": 5,
    "amount_sent": 4.949961,
    "fee_amount": 0.050039,
    "status": "complete",
    "status_reason": null
  },
  "timestamp": 1689168919
}
```

{% endtab %}
{% endtabs %}
