GET /v1/tokeninfo

Retrieve token info from alchemy

GET /v1/tokeninfo/{network}/{address}

Request

curl --location 'https://relay.sspwallet.io/v1/tokeninfo/eth/0x514910771af9ca656af840dff83e8264ecf986ca'

Path Params

Name
Value

network

Chain being used

address

Token contract address

Response

Parameter
Description

name

token name

symbol

token symbol

decimals

number of decimal places of the token

logo

logo link provider by alchemy

{
    "name": "Chainlink",
    "symbol": "LINK",
    "decimals": 18,
    "logo": "https://samplelocation/logo"
}

Last updated