Core Resources
- Tokens
- Customers
- Offerings
- Offering Purchase Intents
- Transactions
- Holders
- Organizations
- Wallets
- Offers
Tokens
List all tokens
Get all tokens
GET
/
token
Copy
curl --request GET \
--url https://api.decentri.org/token
Copy
[
{
"name": "ACME Token",
"symbol": "ACME",
"address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
"decimals": 18,
"owner": "0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E",
"isPaused": false,
"createdAt": "2023-11-07T05:31:56Z"
}
]
Response
200
application/json
The tokens have been successfully retrieved
The response is of type object[]
.
Copy
curl --request GET \
--url https://api.decentri.org/token
Copy
[
{
"name": "ACME Token",
"symbol": "ACME",
"address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
"decimals": 18,
"owner": "0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E",
"isPaused": false,
"createdAt": "2023-11-07T05:31:56Z"
}
]
Assistant
Responses are generated using AI and may contain mistakes.