Get Crypto Currencies
List all supported cryptocurrencies
GETtexttext
/api/v2/crypto-currenciesReturns a list of all supported cryptocurrencies with their details including supported networks, logos, and display information.
Query Parameters
apiKeystringrequired
Your public API key
Response Schema
responsearray
Array of cryptocurrency objects
response[].namestring
Full name (e.g., "Ethereum")
response[].symbolstring
Ticker symbol (e.g., "ETH")
response[].addressstring | null
Contract address for tokens (null for native coins)
response[].networkstring
Primary network
response[].networksarray
List of supported networks for this crypto
response[].logoUrlstring
URL to cryptocurrency logo
response[].isPopularboolean
Whether this is a popular/featured currency
response[].isFiatboolean
Whether this is a fiat-backed stablecoin
Example Request
bashbash
curl -X GET "https://OZZOBiT.com/api/api/v2/crypto-currencies?apiKey=YOUR_KEY"Example Response
jsonjson
{
"response": [
{
"name": "Ethereum",
"symbol": "ETH",
"address": null,
"network": "ethereum",
"networks": ["ethereum", "arbitrum", "optimism", "base"],
"logoUrl": "https://OZZOBiT.com/cdn/assets/icons/eth.png",
"isPopular": true,
"isFiat": false
},
{
"name": "Bitcoin",
"symbol": "BTC",
"address": null,
"network": "bitcoin",
"networks": ["bitcoin"],
"logoUrl": "https://OZZOBiT.com/cdn/assets/icons/btc.png",
"isPopular": true,
"isFiat": false
},
{
"name": "Tether USD",
"symbol": "USDT",
"address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"network": "ethereum",
"networks": ["ethereum", "polygon", "bsc", "avalanche", "tron"],
"logoUrl": "https://OZZOBiT.com/cdn/assets/icons/usdt.png",
"isPopular": true,
"isFiat": true
}
]
}