Crypto
Crypto Catalog API gets the current cryptocurrencies and blockchains supported for transactions.
The Transactions Crypto Catalog API returns the current crypto catalog used by the Transactions API. This endpoint keeps the existing catalog payload while future market capability design is handled separately.
Get Cryptocurrencies
GEThttps://api.adesic.com/v2/transactions/crypto
Returns an object containing information related to what assets the Adesic Network supports.
Headers
| Name | Type | Description |
|---|---|---|
| apiKey* | string | Your Adesic API Key |
200: OK Success
{
"supportedBlockchains": [
"ethereum",
"solana",
"bitcoin",
"dogecoin"
],
"fiatCurrencies": {
"USD": {
"name": "United States Dollar",
"base": "USD",
"logo": "https://raw.githubusercontent.com/adesic/cryptoicons/master/SVG/usd.svg"
}
},
"tokens": {
"AAVE": {
"base": "AAVE",
"logo": "https://raw.githubusercontent.com/adesic/cryptoicons/master/SVG/aave.svg",
"name": "Aave",
"quotes": ["USD"],
"blockchains": ["ethereum"],
"decimals": 18,
"limits": { "min": 0.001, "max": null }
},
"ALI": {
"base": "ALI",
"logo": "https://raw.githubusercontent.com/adesic/cryptoicons/master/SVG/ali.svg",
"name": "Alethea Artificial Liquid Intelligence",
"quotes": ["USD"],
"blockchains": ["ethereum"],
"decimals": 18,
"limits": { "min": 2, "max": null }
}
},
"tokensbyBlockchain": {
"ethereum": [{
"base": "AAVE",
"logo": "https://raw.githubusercontent.com/adesic/cryptoicons/master/SVG/aave.svg",
"name": "Aave",
"quotes": ["USD"],
"blockchains": ["ethereum"],
"decimals": 18,
"limits": { "min": 0.001, "max": null }
}],
"solana": [{
"base": "BOME",
"logo": "https://raw.githubusercontent.com/adesic/cryptoicons/master/SVG/bome.svg",
"name": "BOOK OF MEME",
"quotes": ["USD"],
"blockchains": ["solana"],
"decimals": 6,
"limits": { "min": 10, "max": null }
}]
}
}Get Transaction Blockchains
GEThttps://api.adesic.com/v2/transactions/blockchains
Returns the blockchains currently supported by transaction flows.
Copy & Paste Code
cURL
get_crypto.sh
curl -H "api-key: YOUR_API_KEY" "https://api.adesic.com/v2/transactions/crypto"Crypto Catalog Response Object
| Attribute Name | Data Type | Description |
|---|---|---|
| supportedBlockchains | array of strings | Blockchains Supported by Adesic |
| fiatCurrencies | object | Supported Fiat Currencies |
| tokens | object | Supported Tokens |
| tokensbyBlockchain | object | Supported Tokens by Blockchain |
| defaultTokens | object | Default Tokens Displayed on Adesic Widget |