Loading
Loading
https://api.apifreaks.com/v1.0/currency/historical/data/limits
1. Open the Authorizations dropdown and Verify your API key.
2. Click Run to see the live response here.
$ pip install requestsimport requests
url = "https://api.apifreaks.com/v1.0/currency/historical/data/limits"
payload = {}
headers = {
'X-apiKey': ''
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
| Field | Type | Requirement | Description |
|---|---|---|---|
| availabilityPeriod | Map | Mandatory | A map of all currencies keyed by their currency code. Each entry contains the availability date range for that currency. |
| availabilityPeriod.[currencyCode] | String | Mandatory | The availability date range for the specified currency in the format "YYYY-MM-DD to YYYY-MM-DD", representing the start and end dates. |