REST API DOCS
Client APIBlockchain

Blockchain. Get contract address by Symbol

GET
/backend/api/v1/ethereum/contract_address/

Get Smart Contract Address by specific network.

Notice:

In the URL pass the network

  • Ethereum - ethereum

  • Polygon - polygon

  • Solana - solana

  • Algorand - algorand

  • Avalanche - avalanche

  • Arbitrum - arbitrum

  • Base - base

  • Optimism - optimism

  • BNB Chain - bsc

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

symbol*string

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/ethereum/contract_address/?symbol=HOODX"
{  "message": "success",  "code": 200,  "data": [    {      "contract_address": "0xe1385fdd5ffb10081cd52c56584f25efa9084015",      "contract_address_link": "https://etherscan.io/token/0xe1385fdd5ffb10081cd52c56584f25efa9084015"    }  ]}