v1

latestOpenAPI 3.0.32026-07-1320201.0 MB
Ethereum Blockchain Queries

Get ERC20 contract information

get/api/v2/ethereum/erc20/{contract_address}

Headers

X-Network'testnet' | 'mainnet'

Specify "testnet" for test network or leave empty for main network. Defaults to "mainnet" if not provided.

Authorizationstring required

Bearer token for authorization. Required for authenticated endpoints.

Content-Type'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data'

The MIME type of the request body.

Response

OR

Example response

{
  "status": 200,
  "ok": true,
  "message": "ERC20 contract fetched",
  "data": {
    "contractaddress": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
    "decimals": 6,
    "totalSupply": "51998658367.642960",
    "name": "TetherUSD",
    "symbol": "USDT"
  }
}