Get Coins
Retrieve list of all supported cryptocurrencies
Get Supported Coins
Fetch the complete list of available cryptocurrencies
Query
Parameters
This query requires no parameters
Return Value
List of all supported cryptocurrencies with name and symbol
Example
query {
getCoins {
name
symbol
}
}
Response Example
{
"data": {
"getCoins": [
{
"name": "Bitcoin",
"symbol": "BTC"
},
{
"name": "Ethereum",
"symbol": "ETH"
},
{
"name": "Tether",
"symbol": "USDT"
},
{
"name": "USD Coin",
"symbol": "USDC"
},
{
"name": "Binance Coin",
"symbol": "BNB"
}
]
}
}
Use Cases
Display available cryptocurrencies as payment options to users
Populate dropdown selectors with supported cryptocurrencies
Validate user input against the list of supported coins
Keep your UI synchronized with the platform's supported currencies
Coin Structure
name
StringFull name of the cryptocurrency (e.g., "Bitcoin", "Ethereum")
symbol
StringTrading symbol or ticker (e.g., "BTC", "ETH")
Cache this list on the frontend to avoid repeated API calls. Refresh the cache periodically or when users access payment pages. Use the symbol field as the unique identifier when processing payments. Provide clear labels using the name field for better user experience.