GET
/
asset-symbols
Python
from artemis import Artemis

client = Artemis(
    api_key="My API Key",
)
response = client.asset.list_asset_symbols()
print(response)
[
  {
    "artemis_id": "abstract",
    "symbol": "abstract",
    "coingecko_id": null,
    "title": "Abstract",
    "color": "#04db74"
  },
  "..."
]

Authorizations

APIKey
string
query
required

Available for Enterprise accounts in the Artemis Terminal settings page.

Response

An unpaged list of assets with all the associated simplified metadata.

The response is of type object[].