Quotes (fx)
FX Quote API Overview
Request Payload Example
{
"fromCurrency": "USD",
"toCurrency": "BRL",
"amount": 1000
}Response Payload Example
{
"quotes": [
{
"id": "f28be3f9-ad4d-4a6c-a85d-ae5515a4a158",
"agentId": "8500786a-68e9-45fd-b1d8-c590f1e06450",
"fromAsset": "USD",
"toAsset": "BRL",
"effectiveRate": "5.39023000",
"totalCost": {
"amount": "5.23",
"currency": "USD"
},
"product": "ACCOUNT",
"expireAt": "2025-09-15T11:39:01Z",
"createdAt": "2025-09-15T11:37:01Z",
"sourceAmount": {
"amount": "1000.00",
"currency": "USD"
},
"destinationAmount": {
"amount": "5390.23",
"currency": "BRL"
}
}
]
}Key Fields Explained
Example Conversion Walkthrough
Handling Quote Expiration
Last updated