GET
/
asset
import os
from artemis import Artemis

client = Artemis(
    api_key=os.environ.get("ARTEMIS_API_KEY"),  # This is the default and can be omitted
)
assets = client.asset.list()
print(assets)
[
  {
    "artemis_id": "bitcoin",
    "symbol": "btc"
  },
  {
    "artemis_id": "ethereum",
    "symbol": "eth"
  }
]

Authorizations

APIKey
string
query
required

Available for Enterprise accounts in the Artemis Terminal settings page.

Response

200
application/json
An unpaged list of assets
artemis_id
string
required
symbol
string
required