Free Currency API · Example Payload

Get Status

Example request and response for the /status endpoint to check API quota usage.

CurrencyExchange RatesFinanceHistorical DataFree

Get Status is an example object payload from Free Currency API, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Get API Status",
  "description": "Example request and response for the /status endpoint to check API quota usage.",
  "request": {
    "method": "GET",
    "url": "https://api.freecurrencyapi.com/v1/status?apikey=YOUR_API_KEY",
    "headers": {
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "quotas": {
        "month": {
          "total": 300,
          "used": 71,
          "remaining": 229
        }
      }
    }
  }
}