AssetMoney
Search
⌃K

/bulk/estimates

post
https://asset.money
/bulk/estimates
Fetches the estimated prices of the given slug and token_id's with traits of the tokens

request example

curl
Node(axios)
curl --request POST "https://app.asset.money/bulk/estimates"
-H "X-API-KEY: YOUR_API_KEY"
-H 'Content-Type: application/json'
-d '{
"slug": "cool-cats-nft",
"tokens": ["420", "69"]
}'
// You need an API key to access the endpoint
const response = await axios({
method: 'post',
url: "https://app.asset.money/bulk/estimates",
headers: {
'X-API-KEY': YOUR_API_KEY
},
data: {
slug : "cool-cats-nft",
tokens: ["420", "69"]
}
})

response example

{
"success": true,
"data": [
{
"slug": "cool-cats-nft",
"tokenID": "420",
"price": "11.96",
"traits": [
{
"trait_type": "body",
"value": "blue cat skin"
},
{
"trait_type": "hats",
"value": "beanie red"
},
{
"trait_type": "shirt",
"value": "bandana green"
},
{
"trait_type": "face",
"value": "sunglasses yellow"
},
{
"trait_type": "tier",
"value": "cool_1"
}
]
},
{
"slug": "cool-cats-nft",
"tokenID": "69",
"price": "22.44",
"traits": [
{
"trait_type": "body",
"value": "blue cat skin"
},
{
"trait_type": "hats",
"value": "bucket hat white"
},
{
"trait_type": "shirt",
"value": "sweater pink"
},
{
"trait_type": "face",
"value": "ninja blue"
},
{
"trait_type": "tier",
"value": "wild_1"
}
]
}
]
}