Assets

Santiment Team

Asset

An asset is any cryptocurrency or crypto token which can be associated with a price. Example of assets are Bitcoin, Ethereum and Santiment tokens.

Assets provided by Santiment

There are different ways to check which assets are supported by the products in Santiment’s platform.

Sanpy

import san
san.get("projects/all")

Santiment API

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

Sansheets

Once you have intalled the plugin use function =SAN_ALL_PROJECTS() to fetch the list of all projects.