Convert amount
Converts an amount given in BRL cents to the target currency, using the bid or ask rate.
GET
https://api.payzu.io/v1/currencies/{code}/convertResponses
curl -X GET "https://api.payzu.io/v1/currencies/USD/convert?amount=100&type=string" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.io/v1/currencies/USD/convert?amount=100&type=string", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.io/v1/currencies/USD/convert?amount=100&type=string"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)200