Last updated 1 year ago
Returns all ERC20-tokens filtered by certain parameters
List of token matching filters
"ok"
^ok$
const response = await fetch('https://apis.datamint.ai/v1/erc20/symbols', { method: 'GET', headers: {}, }); const data = await response.json();
{ "status": "ok", "response": [ { "blockchain": "Arbitrum", "address": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", "decimals": 18, "symbol": "WETH" } ] }