> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-881012b3.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Settlements Entity

> Know about the settlements entity parameters and their descriptions.

<div style={{display:"flex",flexWrap:"wrap",alignItems:"center",gap:"0.35rem 0.9rem",border:"1px solid rgba(128,128,128,0.28)",borderRadius:"0.5rem",padding:"0.45rem 0.75rem",margin:"0 0 1.25rem",fontSize:"0.875rem"}}>
  <span style={{fontWeight:600}}>Available in</span>
  <span>🇮🇳 India</span>
  <span>🇸🇬 Singapore</span>
  <span>🇺🇸 United States</span>
</div>

The Settlements entity has the following parameters:

<ResponseExample>
  ```json Entity theme={null}
  {
    "id":"setl_7IZKKI4Pnt2kEe",
    "entity":"settlement",
    "amount":50000,
    "status":"processed",
    "fees":0,
    "tax":0,
    "utr":"1597813219e1pq6w",
    "created_at":1509622307
  }
  ```
</ResponseExample>

<ResponseField name="id" type="string">
  The unique identifier of the settlement transaction. For example, `setl_7IZKKI4Pnt2kEe`
</ResponseField>

<ResponseField name="entity" type="string">
  Indicates the type of entity. Here, it is `settlement`.
</ResponseField>

<ResponseField name="amount" type="integer">
  The amount to be settled (in the smallest unit of currency). For example, ₹500 will be `50000`.
</ResponseField>

<ResponseField name="status" type="string">
  Indicates the [state of the settlement](/docs/us/payments/settlements#settlement-states). Possible values:

  * `created`
  * `processed`
  * `failed`
</ResponseField>

<ResponseField name="fees" type="integer">
  This is the total fee charged for processing all payments received from customers settled to you in this settlement transaction. In case of a normal settlement the fee charge will be `0`.
</ResponseField>

<ResponseField name="tax" type="integer">
  The total tax, in currency subunits, charged on the fees collected to process all payments received from customers settled to you in this settlement transaction. In case of a normal settlement the tax charge will be `0`.
</ResponseField>

<ResponseField name="utr" type="string">
  The Unique Transaction Reference (UTR) number available across banks, which can be used to track a particular settlement in your bank account. For example, `1597813219e1pq6w`.
</ResponseField>

<ResponseField name="created_at" type="integer">
  Unix timestamp at which the settlement transaction was created.
</ResponseField>
