TON Market Cap API
API documentation
List of all jettons with information
GET
https://api.astralyx.dev/tmc/api/public/getJettons
{
response: [
{
data: [
// objects with jettons data
]
}
]
}
Get jetton information by symbol
GET
https://api.astralyx.dev/tmc/api/public/getJettonBySymbol
If response[0].data array is empty, no jettons is found.
Query Parameters
Name
Type
Description
symbol*
String
Symbol of jetton
{
response: [
{
data: [
{
// jetton data
}
]
}
]
}
Get jetton information by contract
GET
https://api.astralyx.dev/tmc/api/public/getJettonByContract
If response[0].data array is empty, no jettons is found.
Query Parameters
Name
Type
Description
contract*
String
Address contract of jetton
{
response: [
{
data: [
{
// jetton data
}
]
}
}
Last updated