> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-60c89f9a-mintlify-audit-missing-sections-1778528421.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Settlements Webhook Events

> Track settlements by subscribing to settlement webhook events, which notify when funds are processed and settled to your account.

### Settlement Processed

<Info>
  **Handy Tips**
</Info>

* The `settlement.processed` event is triggered **after** Razorpay has successfully transferred funds to your bank account.
* The settlement payload includes key financial details such as the settlement amount, fees deducted, applicable tax, UTR (Unique Transaction Reference) and the settlement period.
* Use UTR to reconcile settlement funds received from Razorpay against your bank statement.
* Settlement amounts are always provided in the smallest currency unit (for example, paise for INR, cents for USD).

<Warning>
  **Watch Out!**

  The `processed` status confirms the initiation of fund transfer, but does not mean that funds have been credited to your account. The amount will reflect in your bank account after the standard NEFT/RTGS/IMPS timeline, which can take up to **3 hours**.

  Given below is the sample payload for Settlement webhook events.

  ```json: settlement.processed theme={null}
  {
    "entity": "event",
    "account_id": "acc_PR7UDve9UNcOxW",
    "event": "settlement.processed",
    "contains": [
      "settlement"
    ],
    "payload": {
      "settlement": {
        "entity": {
          "id": "setl_Rf8uva1MU98B4l",
          "entity": "settlement",
          "amount": 1524,
          "status": "processed",
          "fees": 0,
          "tax": 0,
          "utr": "AXISCN1153863727",
          "created_at": 1763019089
        }
      }
    },
    "created_at": 1763021990
  }
  ```
</Warning>
