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

# Check Account Balance

> Retrieve current balance information for your account

Get the current balance information for SMS, payout, and collection services.

## Request Body

<ParamField body="service_id" type="integer" required>
  Your service identifier
</ParamField>

<ParamField body="request_time" type="string" required>
  ISO 8601 formatted timestamp
</ParamField>

## Example Request

```bash theme={null}
curl -X POST https://mobiska-api.stimuluzdev.com/check_sms_balance \
  -H "Authorization: Basic YOUR_ENCODED_API_KEYS" \
  -H "Content-Type: application/json" \
  -d '{
    "service_id": 1,
    "request_time": "2025-01-26T18:25:56Z"
  }'
```

## Response

<ResponseField name="response_code" type="string">
  Status code of the request
</ResponseField>

<ResponseField name="response_message" type="string">
  Human-readable status message
</ResponseField>

<ResponseField name="response_data" type="object">
  <Expandable title="Toggle object">
    <ResponseField name="sms_balance" type="number">
      Current SMS balance
    </ResponseField>

    <ResponseField name="payout_balance" type="number">
      Available payout balance
    </ResponseField>

    <ResponseField name="collection_balance" type="number">
      Current collection balance
    </ResponseField>
  </Expandable>
</ResponseField>

```json theme={null}
{
  "response_code": "000",
  "response_message": "Success",
  "response_data": {
    "sms_balance": 1000,
    "payout_balance": 5000,
    "collection_balance": 2500
  }
}
```
