Exchange API

Crypto to Fiat Estimation

This method calculates the precise fiat amount required to receive the exact specified amount of cryptocurrency, fully accounting for all fees and commissions. In other words, the fiat amount you see is the total payment needed to cover the exact crypto amount you want, with all costs already included.

For example, if you input a crypto amount such as 0.5 BTC, the method might return an estimate of around 25,000 USD.

To call the API, it is essential to include the x-api-key header.

get
Query parameters
cryptoAmountnumberRequired
cryptoSymbolstringRequired
currencyIsoCodestringRequired
Header parameters
x-api-keystringRequired

API key for authentication

Responses
200
Estimate fiat amount based on crypto amount
application/json
get
GET /payment/estimate-crypto-to-fiat-exchange HTTP/1.1
Host: api.ahoracrypto.com
x-api-key: text
Accept: */*
{
  "cryptoAmount": 1,
  "cryptoSymbol": "text",
  "fiatAmount": 1,
  "currencyIsoCode": "text"
}

Fiat to Crypto Estimation

This method estimates the amount of cryptocurrency you'll receive for a specific fiat payment, based on current market rates and fully accounting for commissions and all associated fees. In other words, if you pay exactly X in fiat, you'll receive the precise crypto amount displayed, with all costs already factored in.

For instance, if you convert 1,000 EUR, the method could return an approximation of 0.3 ETH.

To call the API, it is essential to include the x-api-key header.

get
Query parameters
fiatAmountnumberRequired
currencyIsoCodestringRequired
cryptoSymbolstringRequired
Header parameters
x-api-keystringRequired

API key for authentication

Responses
200
Estimate crypto amount based on fiat amount
application/json
get
GET /payment/estimate-fiat-to-crypto-exchange HTTP/1.1
Host: api.ahoracrypto.com
x-api-key: text
Accept: */*
{
  "fiatAmount": 1,
  "currencyIsoCode": "text",
  "cryptoAmount": 1,
  "cryptoCode": "text"
}

Last updated