Rates

Get the token price to the currency

get

/v2/rates

Query parameters
tokensstring[]required

accept ton and jetton master addresses, separated by commas

Example: ["ton"]
currenciesstring[]required

accept ton and all possible fiat currencies, separated by commas

Example: ["ton","usd","rub"]
Responses
curl -L \
  --url 'https://ton-open-api.nownodes.io/v2/rates?tokens=ton&currencies=ton'
{
  "rates": {
    "ANY_ADDITIONAL_PROPERTY": {
      "prices": {
        "TON": 1.3710752873163712
      },
      "diff_24h": {
        "TON": "-1.28%"
      },
      "diff_7d": {
        "TON": "-2.74%"
      },
      "diff_30d": {
        "TON": "-0.56%"
      }
    }
  }
}