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

# Request Parameters

Parameter Type Mandatory Description
apikey string Your API Key

# Example Request

curl "https://api.freecurrencyapi.com/v1/status" \
    -H "apikey: YOUR-APIKEY"

# Sample Response

account_id is your account's numeric ID. The month bucket is your regular monthly request quota. The grace bucket is a temporary extra allowance that keeps your integration running while a pending payment is being completed — it is 0 unless a grace period is active for your account.

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