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

# Check Balance

> Query the account credit of the reseller linked to the API Key

This action returns the account credit of the reseller linked to the API Key.

## Method / Endpoint

```text theme={null}
POST {{API_URL}}/me
```

For Hostrox, the full URL is:

```text theme={null}
POST https://client.hostrox.net/api/reseller/me
```

## Request parameters

| Name  | Required | Description |
| ----- | -------- | ----------- |
| `key` | Yes      | API Key     |

## Example cURL request

```bash theme={null}
curl --location 'https://client.hostrox.net/api/reseller/me' \
  --header 'Content-Type: application/json' \
  --data '{
    "key": "UzZBSlBWeWk0UEcrVWxlU0RjS1B1dz09"
  }'
```

## Example JSON response

```json theme={null}
{
  "status": "successful",
  "balance": "12921.6200",
  "currency": "USD",
  "balance_formatted": "$12,921.62"
}
```

## Response fields
