Get ERC-20 or ERC-721 token by contract address
GET/?module=token&action=getToken
Get ERC-20 or ERC-721 token by contract address
Request
Query Parameters
module stringrequired
Possible values: [token]
action stringrequired
Possible values: [getToken]
contractaddress stringrequired
apiKey stringrequired
Example: pk_1234567890
Responses
- 200
 
OK
- application/json
 
- Schema
 - Example (from schema)
 
Schema
message string
result object
cataloged boolean
contractAddress string
decimals string
name string
symbol string
totalSupply string
type string
status string
{
  "message": "string",
  "result": {
    "cataloged": true,
    "contractAddress": "string",
    "decimals": "string",
    "name": "string",
    "symbol": "string",
    "totalSupply": "string",
    "type": "string"
  },
  "status": "string"
}
Loading...