---
page_title: Get Balance
product: Payout
page_source: https://juspay.io/in/docs/payout/docs/integration/get-balance
openapi: https://juspay.io/in/docs/api/swagger?document=https%3A%2F%2Fjuspay.io%2Fin%2Fdocs%2Fpayout%2Fdocs%2Fintegration%2Fget-balance
llms_txt: https://juspay.io/in/docs/llms.txt
product_llms_txt: https://juspay.io/in/docs/payout/llms.txt
---

## API Version: default


# Get Balance API



Merchant can check balance using this API. We cache the response for 30 minutes hence it is recommended to not call simultaneous check balance calls. ## Endpoints:
- Sandbox: https://sandbox.juspay.in/payout/merchant/v1/getways/balance

- Production: https://api.juspay.in/payout/merchant/v1/getways/balance

## Request Type: 
GET

## Authorization:

#### Basic Auth:
Consists of two parts.

* Username: API Key obtained from Juspay dashboard
* Password: Empty string

Example:- Basic MUQ2QUxxxxxxxxxxxxU5QTIxQzNFNTQwNkFDMEZCOg==
- Tags: String, Mandatory
## Sample Code Snippets:
### Sample Request:

#### Request Code Snippet:

```request
curl --request GET \
     --url https://api.juspay.in/payout/merchant/v1/getways/balance \
     --header 'accept: text/plain' \
     --header 'authorization: Basic OUU4QkUyxxxxxxxxxxxxxxxzMEM2RkFDMjcyQjM5Og=='
```

### Sample Response:

#### Response:
```json
{
    "DUMMY_IMPS": {
      "lastUpdated": "2020-07-27T09:05:08Z",
      "balance": "9999999999"
    },
    "DUMMY_NEFT": {
      "lastUpdated": "2020-07-27T09:05:08Z",
      "balance": "9999999999"
    },
    "CFGEN_IMPS": {
      "lastUpdated": "2020-07-27T09:05:08Z",
      "balance": "1111.44"
    },
    "CFGEN_UPI": {
      "lastUpdated": "2020-07-27T09:05:08Z",
      "balance": "1111.44"
    }
  }
```

## API Responses:
### 200:

#### 200 : DUMMY_IMPS:
- Value:
  - **LastUpdated**:
    - Description: 2020-07-27T09:05:08Z
    - Tags: string
  - **Balance**:
    - Description: 9999999999
    - Tags: string
- Tags: object

#### 200 : DUMMY_NEFT:
- Value:
  - **LastUpdated**:
    - Description: 2020-07-27T09:05:08Z
    - Tags: string
  - **Balance**:
    - Description: 9999999999
    - Tags: string
- Tags: object

#### 200 : CFGEN_IMPS:
- Value:
  - **LastUpdated**:
    - Description: 2020-07-27T09:05:08Z
    - Tags: string
  - **Balance**:
    - Description: 1111.44
    - Tags: string
- Tags: object

#### 200 : CFGEN_UPI:
- Value:
  - **LastUpdated**:
    - Description: 2020-07-27T09:05:08Z
    - Tags: string
  - **Balance**:
    - Description: 1111.44
    - Tags: string
- Tags: object
### 400:

#### object:
- Description: {}
- Tags: Object


---

## See Also

- [IFSC Validation (deprecated)](https://juspay.io/in/docs/payout/docs/integration/ifsc-validation-deprecated)
- [Outage API](https://juspay.io/in/docs/payout/docs/integration/outage-api)
