Crypto
Overview
API endpoints here pertain to any operations we expose on the cryptocurrency or networks. For example, you would use these APIs to retrieve the current prices for cryptocurrencies to display to your users.
{
"fiatAmount": "100",
"type": "INSTANT",
"cryptoCurrency": "ETH"
}
curl --location -g --request POST 'https://api.ratio.me/v1/crypto/estimates:ach' \
--header 'ratio-client-id: <YOUR_CLIENT_ID>' \
--header 'ratio-client-secret: <YOUR_CLIENT_SECRET>' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data-raw '{
"fiatAmount": "100",
"type": "INSTANT",
"cryptoCurrency": "ETH"
}'
Last updated
Was this helpful?