---
page_source: https://docs.juspay.io/payout-sea/docs/integration/get-balance
page_title: Get Balance
---

## 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:
- 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
