# Balance  API

The Balance API allows you to check your current account balance and manage your usage effectively. This API ensures that you can monitor your credits in real-time, helping you to avoid interruptions in your communication services.

## Get Account Balance

### Request

```json
Endpoint: /account/balance
Method: GET

// Request Headers:
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY
```

### Response

```json
{
"status": "success",
"balance": 1500,
"currency": "USD",
"last_updated": "2024-06-29T12:34:56Z"
}
```

***

## Example Use Case

### **Fetching Account Balance**

To fetch your current credit balance, send a `POST` request to the `/account/balance` endpoint.&#x20;

**Here’s an example using `curl`:**

```json
curl -X GET https://api.unecast.com/v1.0/account/balance \
     -H "Authorization: Bearer YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     -d '{}'
```

**Response**

```json
{
"status": "success",
"balance": 1500,
"currency": "USD",
"last_updated": "2024-06-29T12:34:56Z"
}
```
