# Status Endpoint
Returns your current quota
Quota
Requests to this endpoint do not count against your quota or rate limit
Request Method: GET
Request URL: https://api.vatcheckapi.com/v2/status
# Request Parameters
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
apikey | string | ️ | Your API Key |
# Sample Request
curl "https://api.vatcheckapi.com/v2/status" \
-H "apikey: YOUR-APIKEY"
# Sample Response
{
"account_id": 313373133731337,
"quotas": {
"month": {
"total": 300,
"used": 71,
"remaining": 229
},
"grace": {
"total": 0,
"used": 0,
"remaining": 0
}
}
}
The month bucket reflects your plan's monthly request quota. The grace bucket is a temporary allowance we may grant your account (for example while a payment is being completed) so your integration keeps working; it is normally 0, and while a grace quota is active your requests count against it instead of the monthly quota.