Get currency rate
Returns the current bid/ask rate for a currency, in BRL per foreign unit.
GET
https://api.payzu.io/v1/currencies/{code}/rateResponses
curl -X GET "https://api.payzu.io/v1/currencies/USD/rate" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.io/v1/currencies/USD/rate", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.io/v1/currencies/USD/rate"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)200