> For the complete documentation index, see [llms.txt](https://beosinofficials-organization.gitbook.io/beosin-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://beosinofficials-organization.gitbook.io/beosin-api-documentation/api-endpoints/account-balance.md).

# Account Balance

### Description

The API Account Credit Query endpoint retrieves the current credit balance for an organization or individual account. This query is informational only and does not deduct any credits from your account.

You can keep track of the current balance of your API account credits at any time. By monitoring your credit balance, you can ensure uninterrupted access to API services and avoid potential disruptions caused by insufficient credits.

### Basic Info

> * Request method: GET
> * Interface URL: <https://api.beosin.com/api/v1/package/info>
> * Content-Type: application/json
> * Verification method: SIGN
> * Response Time：<8s

### **Header Request Parameter**

<table><thead><tr><th width="150">Parameter</th><th width="193">Required Field (Y/N)</th><th width="157">Parameter Type</th><th width="250">Description</th></tr></thead><tbody><tr><td><a href="/beosin-api-documentation/getting-started/verification.md">APPID</a></td><td>Y</td><td>String</td><td>Unique authentication APPID assigned by KYT system</td></tr><tr><td><a href="/beosin-api-documentation/getting-started/verification.md">APP-SECRET</a></td><td>Y</td><td>String</td><td>Unique authentication APP-SECRET assigned by KYT system</td></tr></tbody></table>

### Return Parameter

<table><thead><tr><th width="245">Parameter</th><th>Parameter Type</th><th>Description</th></tr></thead><tbody><tr><td>id</td><td>Number</td><td>Return id</td></tr><tr><td>code</td><td>Number</td><td>Status code</td></tr><tr><td>msg</td><td>String</td><td>Result Message</td></tr><tr><td>data</td><td>Object</td><td>Result set</td></tr><tr><td>data.surplusIntegral</td><td>Integer</td><td>Remaining credits</td></tr><tr><td>data.equityStartDate</td><td>Long</td><td>Equity start time</td></tr><tr><td>data.equityEndDate</td><td>Long</td><td>Equity end time</td></tr></tbody></table>

### Example of Request Data

```
GET https://api.beosin.com/api/v1/package/info
```

### Example of Response Data

<pre class="language-json"><code class="lang-json"><strong>{
</strong>    "id": 2071864046755426304,
    "code": 200,
    "msg": "success",
    "data": {
        "surplusIntegral": 4838680,
        "equityStartDate": 1704038400,
        "equityEndDate": 1772208000
    }
}
</code></pre>
