Python
from artemis import Artemis
client = Artemis()
response = client.asset.list_asset_symbols()
print(response.assets)curl --request GET \
--url https://data-svc.artemisxyz.com/asset/symbols/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/asset/symbols/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-svc.artemisxyz.com/asset/symbols/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-svc.artemisxyz.com/asset/symbols/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-svc.artemisxyz.com/asset/symbols/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/asset/symbols/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"assets": [
{
"artemis_id": "aave",
"symbol": "aave",
"coingecko_id": "aave",
"title": "Aave",
"color": "#667cfc"
},
{
"artemis_id": "abstract",
"symbol": "abstract",
"coingecko_id": null,
"title": "Abstract",
"color": "#04db74"
},
{
"artemis_id": "abtc",
"symbol": "eq-abtc",
"coingecko_id": null,
"title": "American Bitcoin",
"color": "#F7931A"
}
]
}Core Artemis Assets
List Supported Assets
Returns the complete catalog of assets supported by Artemis — covering crypto assets (chains, tokens, ecosystems, categories) and equities. Use the symbol (or artemis_id) from this list when calling List Available Metrics or Fetch Metrics. Results are unpaged.
GET
/
asset
/
symbols
/
Python
from artemis import Artemis
client = Artemis()
response = client.asset.list_asset_symbols()
print(response.assets)curl --request GET \
--url https://data-svc.artemisxyz.com/asset/symbols/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/asset/symbols/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data-svc.artemisxyz.com/asset/symbols/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-svc.artemisxyz.com/asset/symbols/"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-svc.artemisxyz.com/asset/symbols/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/asset/symbols/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"assets": [
{
"artemis_id": "aave",
"symbol": "aave",
"coingecko_id": "aave",
"title": "Aave",
"color": "#667cfc"
},
{
"artemis_id": "abstract",
"symbol": "abstract",
"coingecko_id": null,
"title": "Abstract",
"color": "#04db74"
},
{
"artemis_id": "abtc",
"symbol": "eq-abtc",
"coingecko_id": null,
"title": "American Bitcoin",
"color": "#F7931A"
}
]
}Response
200 - application/json
An unpaged list of assets with simplified metadata.
Show child attributes
Show child attributes
⌘I

