返回某种货币当前的 bid/ask 汇率,以每单位外币多少 BRL 表示。
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