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

# Request Parameters

Parameter Type Mandatory Description
apikey string Your API Key

# Sample Response

The response contains your account_id and one bucket per quota type: month for your regular monthly quota and grace for grace requests.

{
    "account_id": 313373133731337,
    "quotas": {
        "month": {
            "total": 300,
            "used": 71,
            "remaining": 229
        },
        "grace": {
            "total": 0,
            "used": 0,
            "remaining": 0
        }
    }
}

Grace quota

If a subscription payment fails we do not block your API access right away. Instead your account temporarily receives a limited amount of grace requests. While the grace quota is active, successful requests count against the grace bucket instead of the month bucket, and responses carry X-RateLimit-Limit-Grace-Month / X-RateLimit-Remaining-Grace-Month headers. Once the payment is completed your regular quota applies again. For accounts in good standing the grace bucket is all zeroes.