Python
from artemis import Artemis
client = Artemis()
response = client.asset.list_supported_metrics(symbol="btc")
print(response.metrics)
curl --request GET \
--url https://data-svc.artemisxyz.com/supported-metrics/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/supported-metrics/', 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/supported-metrics/",
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/supported-metrics/"
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/supported-metrics/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/supported-metrics/")
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{
"metrics": [
{
"24H_VOLUME": {
"label": "Daily Token Trading Volume",
"description": "Token Trading Volume in the last 24 hours",
"tags": [
{
"value": "market_data",
"label": "Market Data"
}
],
"aggregation_type": "SUM",
"unit": "CURRENCY",
"internal_data_source": "coingecko",
"source": "Source: Coingecko",
"base_metric": null,
"accepts_date": false,
"cuts": [
{
"granularity": "DAY",
"dimension_type": "TOTAL"
}
],
"thumbnail_url": null,
"source_link": null,
"methodology": null,
"currency_type": null,
"earliest_fiscal_period": null,
"latest_fiscal_period": null,
"priority": null
}
},
{
"PRICE": {
"label": "Price",
"description": "Token closing price",
"tags": [
{
"value": "market_data",
"label": "Market Data"
}
],
"aggregation_type": "LAST",
"unit": "CURRENCY",
"internal_data_source": "coingecko",
"source": "Source: Coingecko",
"base_metric": null,
"accepts_date": true,
"cuts": [
{
"granularity": "DAY",
"dimension_type": "TOTAL"
}
],
"thumbnail_url": null,
"source_link": null,
"methodology": null,
"currency_type": null,
"earliest_fiscal_period": null,
"latest_fiscal_period": null,
"priority": null
}
}
]
}Core Artemis Assets
List Available Metrics for Assets by Symbol
Returns the metrics available for a given asset symbol. The metric set depends on the asset type — equities like AAPL expose price/volume/financials; crypto chains like ETH expose on-chain metrics (DAU, fees, TVL); category symbols like mev expose category aggregates.
Accepts both crypto and equity symbols. Discover valid symbols via List Supported Assets.
GET
/
supported-metrics
/
Python
from artemis import Artemis
client = Artemis()
response = client.asset.list_supported_metrics(symbol="btc")
print(response.metrics)
curl --request GET \
--url https://data-svc.artemisxyz.com/supported-metrics/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/supported-metrics/', 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/supported-metrics/",
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/supported-metrics/"
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/supported-metrics/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/supported-metrics/")
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{
"metrics": [
{
"24H_VOLUME": {
"label": "Daily Token Trading Volume",
"description": "Token Trading Volume in the last 24 hours",
"tags": [
{
"value": "market_data",
"label": "Market Data"
}
],
"aggregation_type": "SUM",
"unit": "CURRENCY",
"internal_data_source": "coingecko",
"source": "Source: Coingecko",
"base_metric": null,
"accepts_date": false,
"cuts": [
{
"granularity": "DAY",
"dimension_type": "TOTAL"
}
],
"thumbnail_url": null,
"source_link": null,
"methodology": null,
"currency_type": null,
"earliest_fiscal_period": null,
"latest_fiscal_period": null,
"priority": null
}
},
{
"PRICE": {
"label": "Price",
"description": "Token closing price",
"tags": [
{
"value": "market_data",
"label": "Market Data"
}
],
"aggregation_type": "LAST",
"unit": "CURRENCY",
"internal_data_source": "coingecko",
"source": "Source: Coingecko",
"base_metric": null,
"accepts_date": true,
"cuts": [
{
"granularity": "DAY",
"dimension_type": "TOTAL"
}
],
"thumbnail_url": null,
"source_link": null,
"methodology": null,
"currency_type": null,
"earliest_fiscal_period": null,
"latest_fiscal_period": null,
"priority": null
}
}
]
}⌘I

