JettonsService
getJettonTrustScoreList
The list of trust score by jettons
💼 Available in paid plans only
POST
/
v1
/
jettons
/
trust-score
getJettonTrustScoreList
curl --request POST \
--url https://api.dyor.io/v1/jettons/trust-score \
--header 'Content-Type: application/json' \
--data '
{
"limit": 123,
"cursor": "<string>",
"excludeScam": true,
"search": "<string>",
"address": [
"<string>"
],
"admin": [
"<string>"
],
"verification": [
"JVS_NONE"
],
"sort": "createdAt",
"order": "asc",
"priceChange": {
"ton": {
"hour": {
"min": 123,
"max": 123
},
"hour6": {
"min": 123,
"max": 123
},
"day": {
"min": 123,
"max": 123
},
"week": {
"min": 123,
"max": 123
}
}
},
"liquidity": {
"usd": {
"min": {
"value": "<string>",
"decimals": 123
},
"max": {
"value": "<string>",
"decimals": 123
}
}
},
"fdmc": {
"min": {
"value": "<string>",
"decimals": 123
},
"max": {
"value": "<string>",
"decimals": 123
}
},
"trustScore": {
"min": "<string>",
"max": "<string>"
},
"holders": {
"min": "<string>",
"max": "<string>"
},
"currency": "ton"
}
'import requests
url = "https://api.dyor.io/v1/jettons/trust-score"
payload = {
"limit": 123,
"cursor": "<string>",
"excludeScam": True,
"search": "<string>",
"address": ["<string>"],
"admin": ["<string>"],
"verification": ["JVS_NONE"],
"sort": "createdAt",
"order": "asc",
"priceChange": { "ton": {
"hour": {
"min": 123,
"max": 123
},
"hour6": {
"min": 123,
"max": 123
},
"day": {
"min": 123,
"max": 123
},
"week": {
"min": 123,
"max": 123
}
} },
"liquidity": { "usd": {
"min": {
"value": "<string>",
"decimals": 123
},
"max": {
"value": "<string>",
"decimals": 123
}
} },
"fdmc": {
"min": {
"value": "<string>",
"decimals": 123
},
"max": {
"value": "<string>",
"decimals": 123
}
},
"trustScore": {
"min": "<string>",
"max": "<string>"
},
"holders": {
"min": "<string>",
"max": "<string>"
},
"currency": "ton"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
limit: 123,
cursor: '<string>',
excludeScam: true,
search: '<string>',
address: ['<string>'],
admin: ['<string>'],
verification: ['JVS_NONE'],
sort: 'createdAt',
order: 'asc',
priceChange: {
ton: {
hour: {min: 123, max: 123},
hour6: {min: 123, max: 123},
day: {min: 123, max: 123},
week: {min: 123, max: 123}
}
},
liquidity: {
usd: {
min: {value: '<string>', decimals: 123},
max: {value: '<string>', decimals: 123}
}
},
fdmc: {
min: {value: '<string>', decimals: 123},
max: {value: '<string>', decimals: 123}
},
trustScore: {min: '<string>', max: '<string>'},
holders: {min: '<string>', max: '<string>'},
currency: 'ton'
})
};
fetch('https://api.dyor.io/v1/jettons/trust-score', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.dyor.io/v1/jettons/trust-score",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'limit' => 123,
'cursor' => '<string>',
'excludeScam' => true,
'search' => '<string>',
'address' => [
'<string>'
],
'admin' => [
'<string>'
],
'verification' => [
'JVS_NONE'
],
'sort' => 'createdAt',
'order' => 'asc',
'priceChange' => [
'ton' => [
'hour' => [
'min' => 123,
'max' => 123
],
'hour6' => [
'min' => 123,
'max' => 123
],
'day' => [
'min' => 123,
'max' => 123
],
'week' => [
'min' => 123,
'max' => 123
]
]
],
'liquidity' => [
'usd' => [
'min' => [
'value' => '<string>',
'decimals' => 123
],
'max' => [
'value' => '<string>',
'decimals' => 123
]
]
],
'fdmc' => [
'min' => [
'value' => '<string>',
'decimals' => 123
],
'max' => [
'value' => '<string>',
'decimals' => 123
]
],
'trustScore' => [
'min' => '<string>',
'max' => '<string>'
],
'holders' => [
'min' => '<string>',
'max' => '<string>'
],
'currency' => 'ton'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.dyor.io/v1/jettons/trust-score"
payload := strings.NewReader("{\n \"limit\": 123,\n \"cursor\": \"<string>\",\n \"excludeScam\": true,\n \"search\": \"<string>\",\n \"address\": [\n \"<string>\"\n ],\n \"admin\": [\n \"<string>\"\n ],\n \"verification\": [\n \"JVS_NONE\"\n ],\n \"sort\": \"createdAt\",\n \"order\": \"asc\",\n \"priceChange\": {\n \"ton\": {\n \"hour\": {\n \"min\": 123,\n \"max\": 123\n },\n \"hour6\": {\n \"min\": 123,\n \"max\": 123\n },\n \"day\": {\n \"min\": 123,\n \"max\": 123\n },\n \"week\": {\n \"min\": 123,\n \"max\": 123\n }\n }\n },\n \"liquidity\": {\n \"usd\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n }\n },\n \"fdmc\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n },\n \"trustScore\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"holders\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"currency\": \"ton\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.dyor.io/v1/jettons/trust-score")
.header("Content-Type", "application/json")
.body("{\n \"limit\": 123,\n \"cursor\": \"<string>\",\n \"excludeScam\": true,\n \"search\": \"<string>\",\n \"address\": [\n \"<string>\"\n ],\n \"admin\": [\n \"<string>\"\n ],\n \"verification\": [\n \"JVS_NONE\"\n ],\n \"sort\": \"createdAt\",\n \"order\": \"asc\",\n \"priceChange\": {\n \"ton\": {\n \"hour\": {\n \"min\": 123,\n \"max\": 123\n },\n \"hour6\": {\n \"min\": 123,\n \"max\": 123\n },\n \"day\": {\n \"min\": 123,\n \"max\": 123\n },\n \"week\": {\n \"min\": 123,\n \"max\": 123\n }\n }\n },\n \"liquidity\": {\n \"usd\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n }\n },\n \"fdmc\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n },\n \"trustScore\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"holders\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"currency\": \"ton\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.dyor.io/v1/jettons/trust-score")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"limit\": 123,\n \"cursor\": \"<string>\",\n \"excludeScam\": true,\n \"search\": \"<string>\",\n \"address\": [\n \"<string>\"\n ],\n \"admin\": [\n \"<string>\"\n ],\n \"verification\": [\n \"JVS_NONE\"\n ],\n \"sort\": \"createdAt\",\n \"order\": \"asc\",\n \"priceChange\": {\n \"ton\": {\n \"hour\": {\n \"min\": 123,\n \"max\": 123\n },\n \"hour6\": {\n \"min\": 123,\n \"max\": 123\n },\n \"day\": {\n \"min\": 123,\n \"max\": 123\n },\n \"week\": {\n \"min\": 123,\n \"max\": 123\n }\n }\n },\n \"liquidity\": {\n \"usd\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n }\n },\n \"fdmc\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n },\n \"trustScore\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"holders\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"currency\": \"ton\"\n}"
response = http.request(request)
puts response.read_body{
"items": [
{
"address": "0:906697a57af1cdb1bc39214b7049ae02b3c92a5b0c342ac61e0eb8bd9304b5f1",
"score": 78,
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"addressBook": {},
"jettons": {},
"next": "<string>"
}{
"code": 3,
"message": "invalid value",
"details": []
}{
"code": 5,
"message": "not found",
"details": []
}{
"code": 8,
"message": "too many requests",
"details": []
}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}Body
application/json
Max value: 100
Should be set by value from response field next
Jettons marked as scam will be excluded, if it's set to true
Search by phrase in jetton name or symbol Length should be in range [3:255]
Example: EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz
Max count: 100
Example: EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz
Max count: 10
Max count: 5
Available options:
JVS_NONE, JVS_APPROVED, JVS_COMMUNITY_VERIFIED, JVS_VERIFIED, JVS_SCAM Available options:
createdAt, fdmc, tvl, liquidityUsd, trustScore, volume24h, holders, traders24h, transactions24h, tonPriceChangeHour, tonPriceChangeHour6, tonPriceChangeDay, tonPriceChangeWeek, tonPriceChangeMonth Available options:
asc, desc Show child attributes
Show child attributes
Show child attributes
Show child attributes
Range [min, max]
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Available options:
ton, usd, eur, gbp, jpy, byn, ves, rub, uah, kzt, krw, ils, idr, aed, gel, twd, try, hkd, inr, cad, amd, aud, pln, cop, brl, chf, mxn, ars, sgd, sar, mdl, ron, sek, azn, rsd, nok, myr, bgn, egp, gtq, clp, nzd, bdt, kgs, thb, uzs, uyu, vnd, ugx, kes, zar, etb, ngn, lkr Response
A successful response.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
If the field is empty or not exists there's no next page
Previous
getJettonMetricsInformation about jetton metrics (price, holders count, liquidity (tvl), fdmc, trust score)
Next
⌘I
getJettonTrustScoreList
curl --request POST \
--url https://api.dyor.io/v1/jettons/trust-score \
--header 'Content-Type: application/json' \
--data '
{
"limit": 123,
"cursor": "<string>",
"excludeScam": true,
"search": "<string>",
"address": [
"<string>"
],
"admin": [
"<string>"
],
"verification": [
"JVS_NONE"
],
"sort": "createdAt",
"order": "asc",
"priceChange": {
"ton": {
"hour": {
"min": 123,
"max": 123
},
"hour6": {
"min": 123,
"max": 123
},
"day": {
"min": 123,
"max": 123
},
"week": {
"min": 123,
"max": 123
}
}
},
"liquidity": {
"usd": {
"min": {
"value": "<string>",
"decimals": 123
},
"max": {
"value": "<string>",
"decimals": 123
}
}
},
"fdmc": {
"min": {
"value": "<string>",
"decimals": 123
},
"max": {
"value": "<string>",
"decimals": 123
}
},
"trustScore": {
"min": "<string>",
"max": "<string>"
},
"holders": {
"min": "<string>",
"max": "<string>"
},
"currency": "ton"
}
'import requests
url = "https://api.dyor.io/v1/jettons/trust-score"
payload = {
"limit": 123,
"cursor": "<string>",
"excludeScam": True,
"search": "<string>",
"address": ["<string>"],
"admin": ["<string>"],
"verification": ["JVS_NONE"],
"sort": "createdAt",
"order": "asc",
"priceChange": { "ton": {
"hour": {
"min": 123,
"max": 123
},
"hour6": {
"min": 123,
"max": 123
},
"day": {
"min": 123,
"max": 123
},
"week": {
"min": 123,
"max": 123
}
} },
"liquidity": { "usd": {
"min": {
"value": "<string>",
"decimals": 123
},
"max": {
"value": "<string>",
"decimals": 123
}
} },
"fdmc": {
"min": {
"value": "<string>",
"decimals": 123
},
"max": {
"value": "<string>",
"decimals": 123
}
},
"trustScore": {
"min": "<string>",
"max": "<string>"
},
"holders": {
"min": "<string>",
"max": "<string>"
},
"currency": "ton"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
limit: 123,
cursor: '<string>',
excludeScam: true,
search: '<string>',
address: ['<string>'],
admin: ['<string>'],
verification: ['JVS_NONE'],
sort: 'createdAt',
order: 'asc',
priceChange: {
ton: {
hour: {min: 123, max: 123},
hour6: {min: 123, max: 123},
day: {min: 123, max: 123},
week: {min: 123, max: 123}
}
},
liquidity: {
usd: {
min: {value: '<string>', decimals: 123},
max: {value: '<string>', decimals: 123}
}
},
fdmc: {
min: {value: '<string>', decimals: 123},
max: {value: '<string>', decimals: 123}
},
trustScore: {min: '<string>', max: '<string>'},
holders: {min: '<string>', max: '<string>'},
currency: 'ton'
})
};
fetch('https://api.dyor.io/v1/jettons/trust-score', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.dyor.io/v1/jettons/trust-score",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'limit' => 123,
'cursor' => '<string>',
'excludeScam' => true,
'search' => '<string>',
'address' => [
'<string>'
],
'admin' => [
'<string>'
],
'verification' => [
'JVS_NONE'
],
'sort' => 'createdAt',
'order' => 'asc',
'priceChange' => [
'ton' => [
'hour' => [
'min' => 123,
'max' => 123
],
'hour6' => [
'min' => 123,
'max' => 123
],
'day' => [
'min' => 123,
'max' => 123
],
'week' => [
'min' => 123,
'max' => 123
]
]
],
'liquidity' => [
'usd' => [
'min' => [
'value' => '<string>',
'decimals' => 123
],
'max' => [
'value' => '<string>',
'decimals' => 123
]
]
],
'fdmc' => [
'min' => [
'value' => '<string>',
'decimals' => 123
],
'max' => [
'value' => '<string>',
'decimals' => 123
]
],
'trustScore' => [
'min' => '<string>',
'max' => '<string>'
],
'holders' => [
'min' => '<string>',
'max' => '<string>'
],
'currency' => 'ton'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.dyor.io/v1/jettons/trust-score"
payload := strings.NewReader("{\n \"limit\": 123,\n \"cursor\": \"<string>\",\n \"excludeScam\": true,\n \"search\": \"<string>\",\n \"address\": [\n \"<string>\"\n ],\n \"admin\": [\n \"<string>\"\n ],\n \"verification\": [\n \"JVS_NONE\"\n ],\n \"sort\": \"createdAt\",\n \"order\": \"asc\",\n \"priceChange\": {\n \"ton\": {\n \"hour\": {\n \"min\": 123,\n \"max\": 123\n },\n \"hour6\": {\n \"min\": 123,\n \"max\": 123\n },\n \"day\": {\n \"min\": 123,\n \"max\": 123\n },\n \"week\": {\n \"min\": 123,\n \"max\": 123\n }\n }\n },\n \"liquidity\": {\n \"usd\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n }\n },\n \"fdmc\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n },\n \"trustScore\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"holders\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"currency\": \"ton\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.dyor.io/v1/jettons/trust-score")
.header("Content-Type", "application/json")
.body("{\n \"limit\": 123,\n \"cursor\": \"<string>\",\n \"excludeScam\": true,\n \"search\": \"<string>\",\n \"address\": [\n \"<string>\"\n ],\n \"admin\": [\n \"<string>\"\n ],\n \"verification\": [\n \"JVS_NONE\"\n ],\n \"sort\": \"createdAt\",\n \"order\": \"asc\",\n \"priceChange\": {\n \"ton\": {\n \"hour\": {\n \"min\": 123,\n \"max\": 123\n },\n \"hour6\": {\n \"min\": 123,\n \"max\": 123\n },\n \"day\": {\n \"min\": 123,\n \"max\": 123\n },\n \"week\": {\n \"min\": 123,\n \"max\": 123\n }\n }\n },\n \"liquidity\": {\n \"usd\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n }\n },\n \"fdmc\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n },\n \"trustScore\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"holders\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"currency\": \"ton\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.dyor.io/v1/jettons/trust-score")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"limit\": 123,\n \"cursor\": \"<string>\",\n \"excludeScam\": true,\n \"search\": \"<string>\",\n \"address\": [\n \"<string>\"\n ],\n \"admin\": [\n \"<string>\"\n ],\n \"verification\": [\n \"JVS_NONE\"\n ],\n \"sort\": \"createdAt\",\n \"order\": \"asc\",\n \"priceChange\": {\n \"ton\": {\n \"hour\": {\n \"min\": 123,\n \"max\": 123\n },\n \"hour6\": {\n \"min\": 123,\n \"max\": 123\n },\n \"day\": {\n \"min\": 123,\n \"max\": 123\n },\n \"week\": {\n \"min\": 123,\n \"max\": 123\n }\n }\n },\n \"liquidity\": {\n \"usd\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n }\n },\n \"fdmc\": {\n \"min\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n },\n \"max\": {\n \"value\": \"<string>\",\n \"decimals\": 123\n }\n },\n \"trustScore\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"holders\": {\n \"min\": \"<string>\",\n \"max\": \"<string>\"\n },\n \"currency\": \"ton\"\n}"
response = http.request(request)
puts response.read_body{
"items": [
{
"address": "0:906697a57af1cdb1bc39214b7049ae02b3c92a5b0c342ac61e0eb8bd9304b5f1",
"score": 78,
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"addressBook": {},
"jettons": {},
"next": "<string>"
}{
"code": 3,
"message": "invalid value",
"details": []
}{
"code": 5,
"message": "not found",
"details": []
}{
"code": 8,
"message": "too many requests",
"details": []
}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}