POST
/
token
curl --request POST \
  --url https://api.decentri.org/token \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Decentri Token",
  "decimals": 18,
  "symbol": "DEC",
  "owner": "0xABD3CE8DB82F4B81A80A6E8AFDF668F80BEDD254"
}'
{
  "name": "ACME Token",
  "symbol": "ACME",
  "address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
  "decimals": 18,
  "owner": "0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E",
  "isPaused": false,
  "createdAt": "2023-11-07T05:31:56Z"
}

Body

application/json
name
string
required

The name of the token

Example:

"Decentri Token"

decimals
number
default:18
required

The number of decimals places the token should have

Required range: 0 <= x <= 18
Example:

18

symbol
string
required

The symbol of the token

Example:

"DEC"

owner
string
required

The owner of the token

Example:

"0xABD3CE8DB82F4B81A80A6E8AFDF668F80BEDD254"

Response

201
application/json
The token has been successfully created
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