GET
/
token
/
{address}
curl --request GET \
  --url https://api.decentri.org/token/{address}
{
  "name": "ACME Token",
  "symbol": "ACME",
  "address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
  "decimals": 18,
  "owner": "0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E",
  "isPaused": false,
  "createdAt": "2023-11-07T05:31:56Z"
}

Path Parameters

address
string
required

Response

200
application/json
The token has been successfully retrieved
name
string
required

The name of the token

Example:

"ACME Token"

symbol
string
required

The symbol of the token

Example:

"ACME"

address
string
required

The address of the token

Example:

"0xc0ffee254729296a45a3885639AC7E10F9d54979"

decimals
number
required

The number of decimals places the token should have

Example:

18

owner
string
required

The owner of the token

Example:

"0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E"

isPaused
boolean
required

Whether the token is paused

Example:

false

createdAt
string
required

The date the token was created