Cryptocurrency
Fetching Coins and Tokens rates
const response = await fetch("https://api.simplepay.ai/cryptocurrency?rates=true&v=1", {
method: "GET",
headers: {},
})
const rates = await response.json()Check supported cryptocurrencies in specific App
const response = await fetch("https://api.simplepay.ai/cryptocurrency?app_id={APP_ID}&v=1", {
method: "GET",
headers: {},
})
const rates = await response.json()

Retrieves list of supported cryptocurrencies. Can include current exchange rates if requested.
Query parameters
vinteger · enumRequiredPossible values:
API version, must be 1
app_idstring · uuidOptional
Show supported cryptocurrencies in specific app in response
ratesbooleanOptional
Include current exchange rates in response
networksbooleanOptional
Include network info in response
Responses
200
List of cryptocurrencies successfully retrieved
application/json
get
/cryptocurrency200
List of cryptocurrencies successfully retrieved
Last updated
Was this helpful?