Prices

This endpoint allows you to retrieve the current prices of all cryptocurrencies supported by OxaPay.

get
Responses
200

Successful operation

application/json
get
import requests

url = 'https://api.oxapay.com/v1/common/prices'

response = requests.get(url)
result = response.json()
print(result)
200

Successful operation

{
  "data": {
    "DOGE": 0.33417,
    "BNB": 695.79,
    "XMR": 198.42,
    "BTC": 94876.55,
    "ETH": 3301.45,
    "USDC": 1.0001,
    "POL": 0.4591,
    "SOL": 191.35,
    "NOT": 0.0059799,
    "SHIB": 0.00002163,
    "TRX": 0.2422,
    "USDT": 1,
    "DOGS": 0.000459,
    "TON": 5.2515,
    "BCH": 433.5,
    "DGB": 0.01244,
    "LTC": 103.99
  },
  "message": "Operation completed successfully!",
  "error": {},
  "status": 200,
  "version": "1.0.3"
}

Last updated