Calculate Crypto to Fiat Amount

Calculates the fiat equivalent of a given cryptocurrency amount using current exchange rate data.

The calculation is informational only and does not perform any cryptocurrency or fiat exchange operations.

Calculate Crypto to Fiat Amount

POST https://api-processing.crypto-chief.com/v1/currencies/convert/crypto-fiat

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

provider

false

Exchange rate data source

from

true

Target cryptocurrency ticker

to

true

Source fiat currency code

amount

string

true

Amount in source currency

Response

{
    "amount_crypto": 5000,
    "amount_fiat": 388011.715,
    "crypto": "USDT",
    "crypto_to_usdt": 1,
    "exchange": "any",
    "fiat": "INR",
    "fiat_to_usd": 0.01288620886098761,
    "timestamp_crypto": 1768826655,
    "timestamp_fiat": 1768826655
}

Last updated