Retrieves a list of exchange rates with optional currency and date filters. When filtering by both from_currency and to_currency, results are returned in the requested direction regardless of how they are stored internally.
Security
oAuth2ClientCredentials
GET
import requests
url = "https://api.qargo.com/v1/accounting/exchange-rate"
headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)Response
- string
- null
{ "next_cursor": "string", "items": [ { … } ] }