# 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.iplookupapi.com/v1/status

# Request Parameters

Parameter Type Mandatory Description
apikey string Your API Key

# Sample Response

{
    "account_id": 313373133731337,
    "quotas": {
        "month": {
            "total": 300,
            "used": 71,
            "remaining": 229
        },
        "grace": {
            "total": 0,
            "used": 0,
            "remaining": 0
        }
    }
}
Field Description
account_id The ID of your account
quotas.month Your monthly request quota: the plan's total, how much you used and how much is remaining
quotas.grace Your grace quota, see below

Grace quota

The grace quota is a temporary allowance we grant while a payment is still pending (for example after a failed renewal), so your integration keeps working without interruption. In normal operation all of its values are 0. While you are consuming grace quota, the monthly quota response headers are replaced by x-ratelimit-limit-grace-month / x-ratelimit-remaining-grace-month.