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

# Get Escrow Balance

> Get your available USDT and INR escrow balance

# Get Escrow Balance

Returns your account's escrow balance. `inr` is the amount available to disburse via a `pool_settlement` transaction.

## Request

```bash theme={null}
curl https://api.stablepay.global/v2/escrow/balance \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "usdt": "0.00",
    "inr": "842500.00"
  }
}
```

| Field  | Description                                                |
| ------ | ---------------------------------------------------------- |
| `usdt` | Available USDT escrow balance                              |
| `inr`  | Available INR escrow balance — the amount you can disburse |
