GET
/
asset-symbols
import os
from artemis import Artemis

client = Artemis(
    api_key=os.environ.get("ARTEMIS_API_KEY"),  # This is the default and can be omitted
)
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

200
application/json

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

The response is of type object[].