An asset is any cryptocurrency or crypto token which can be associated with a price. Example of assets are Bitcoin, Ethereum and Santiment tokens.
There are different ways to check which assets are supported by the products in Santiment’s platform.
The following GraphQL query gives a list of all assets
{
allProjects {
name
slug
}
}
You can call it with curl
like that:
curl \
-X POST \
-H "Content-Type: application/json" \
--data '{ "query": "{ allProjects { name slug }}" }' \
https://api.santiment.net/graphql
Once you have intalled the plugin use function =SAN_ALL_PROJECTS()
to fetch the list of all projects.