curl --request POST \
--url https://api.sand.getivy.de/api/service/fx/retrieve \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"fxId": "<string>"
}'
{
"id": "<string>",
"rate": "<string>",
"targetAmount": "<string>",
"sourceAmount": "<string>",
"sourceCurrency": "EUR",
"targetCurrency": "USDC",
"metadata": {},
"status": "success"
}
Retrieve the details of a past fx transfer using the fxId.
curl --request POST \
--url https://api.sand.getivy.de/api/service/fx/retrieve \
--header 'Content-Type: application/json' \
--header 'X-Ivy-Api-Key: <api-key>' \
--data '{
"fxId": "<string>"
}'
{
"id": "<string>",
"rate": "<string>",
"targetAmount": "<string>",
"sourceAmount": "<string>",
"sourceCurrency": "EUR",
"targetCurrency": "USDC",
"metadata": {},
"status": "success"
}
API key for authentication
FX details retrieved successfully
The response is of type object
.
Was this page helpful?