curl --location --request POST '/api/v1/rates/convert/batch' \
--header 'X-API-Key: <api-key>' \
--header 'X-Business-ID: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"conversions": [
{
"fromCurrency": "string",
"toCurrency": "string",
"amount": 1
}
]
}'{
"success": true,
"data": [
{
"fromCurrency": "string",
"toCurrency": "string",
"fromAmount": 0,
"toAmount": 0,
"rate": 0,
"timestamp": "string",
"source": "string",
"error": "string"
}
]
}