Quick Start
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
To make your first request, send an authenticated request to the /estimate endpoint. This will get the estimated price of the token entered.
Take a look at how you might call this method using our endpoints via
curl
:curl
Node(axios)
curl -G https://asset.money/estimate
-H "X-API-KEY: YOUR_API_KEY"
-d 'slug=cool-cats-nft'
-d 'tokenID=420'
// You need an API key to access the endpoint
const response = await axios('https://asset.money/estimate?slug=cool-cats-nft&tokenID=420', {
headers: {
'X-API-KEY':YOUR_API_KEY
}
})
Last modified 1yr ago