Loading
Loading
https://api.apifreaks.com/v1.0/currency/fluctuation
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/fluctuation"
payload = {}
headers = {
'X-apiKey': ''
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
| Field | Type | Requirement | Description | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| startDate | String | Mandatory | It is the starting date of interval. It is provided via input. | ||||||||||||||||||||
| endDate | String | Mandatory | It is the ending date of interval. It is provided via input. | ||||||||||||||||||||
| base | String | Mandatory | It is the base currency with respect to which all rates will be calculated. It can be provided via input. | ||||||||||||||||||||
| rateFluctuations | Map | Mandatory | It is the map that will contain fluctuations of symbol currencies. Each Individual currency symbol object contains following fields:
|