Retrieve current rates
GET /v1/rates
Fetch latest exchange rates of all currencies.
GET /v1/rates?source=EUR&target=USD
Fetch latest exchange rate of one currency pair.
Please see the rate API reference for full details.
Example Request (Basic authentication)
curl -X GET https://api.sandbox.transferwise.tech/v1/rates?source=EUR&target=USD \--user <your api client_id>:<your api client_secret>
Example Response
[{"rate": 1.166,"source": "EUR","target": "USD","time": "2018-08-31T10:43:31+0000"}]