GET
/
dev-ecosystems
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.list_ecosystems()
print(response)
[
  {
    "label": "0cash",
    "value": "0cash",
    "symbol": null
  },
  {
    "label": "Aptos",
    "value": "Aptos",
    "symbol": "apt"
  }
]

Authorizations

APIKey
string
query
required

Available for Enterprise accounts in the Artemis Terminal settings page.

Response

200
application/json
An unpaged list of ecosystems

The response is of type any[].