Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_all_time_highs()
# The 5 biggest blow-out ATHs (sorted by percent above previous):
for card in response.rows[:5]:
print(
f"{card.entity_id} {card.metric_name} "
f"hit {card.new_value:,.0f} on {card.new_date} "
f"(+{card.percent_above_previous:.1f}% vs prior ATH)"
)curl --request GET \
--url https://data-svc.artemisxyz.com/insights/ath/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/ath/', 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/insights/ath/",
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/insights/ath/"
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/insights/ath/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/ath/")
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{
"rows": [
{
"DOMAIN": "protocol",
"ENTITY_ID": "ethereum",
"METRIC_NAME": "SETTLEMENT_VOLUME",
"HORIZON": "monthly",
"UNIT": "CURRENCY",
"METRIC_TYPE": "flow",
"NEW_VALUE": 1024500000000,
"NEW_DATE": "2026-04-01",
"PREVIOUS_ATH_VALUE": 897249366011.26,
"PREVIOUS_ATH_DATE": "2025-10-01",
"PERCENT_ABOVE_PREVIOUS": 14.18,
"PERIOD_END_DATE": null,
"FISCAL_YEAR": null,
"FISCAL_PERIOD": null,
"REPORT_DATE": null,
"SPARKLINE": [
{
"date": "2026-02-01",
"value": 712450891234.5
},
{
"date": "2026-03-01",
"value": 854120567432.1
},
{
"date": "2026-04-01",
"value": 1024500000000
}
]
}
]
}Insights
List All-Time-High Insight Cards
Recent all-time-high events across crypto protocols, stablecoins (daily / weekly / monthly horizons), and equities (quarterly fundamentals). Each card carries the asset (ENTITY_ID), the metric (METRIC_NAME), the new ATH (NEW_VALUE), the previous ATH for comparison (PREVIOUS_ATH_VALUE and PREVIOUS_ATH_DATE), the percent improvement (PERCENT_ABOVE_PREVIOUS), and a SPARKLINE for inline charting.
Cards are sorted by PERCENT_ABOVE_PREVIOUS descending — biggest blow-out highs first.
Related: list_all_time_lows, list_growth_streaks.
GET
/
insights
/
ath
/
Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_all_time_highs()
# The 5 biggest blow-out ATHs (sorted by percent above previous):
for card in response.rows[:5]:
print(
f"{card.entity_id} {card.metric_name} "
f"hit {card.new_value:,.0f} on {card.new_date} "
f"(+{card.percent_above_previous:.1f}% vs prior ATH)"
)curl --request GET \
--url https://data-svc.artemisxyz.com/insights/ath/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/ath/', 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/insights/ath/",
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/insights/ath/"
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/insights/ath/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/ath/")
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{
"rows": [
{
"DOMAIN": "protocol",
"ENTITY_ID": "ethereum",
"METRIC_NAME": "SETTLEMENT_VOLUME",
"HORIZON": "monthly",
"UNIT": "CURRENCY",
"METRIC_TYPE": "flow",
"NEW_VALUE": 1024500000000,
"NEW_DATE": "2026-04-01",
"PREVIOUS_ATH_VALUE": 897249366011.26,
"PREVIOUS_ATH_DATE": "2025-10-01",
"PERCENT_ABOVE_PREVIOUS": 14.18,
"PERIOD_END_DATE": null,
"FISCAL_YEAR": null,
"FISCAL_PERIOD": null,
"REPORT_DATE": null,
"SPARKLINE": [
{
"date": "2026-02-01",
"value": 712450891234.5
},
{
"date": "2026-03-01",
"value": 854120567432.1
},
{
"date": "2026-04-01",
"value": 1024500000000
}
]
}
]
}Response
200 - application/json
A feed of all-time-high insight cards.
Show child attributes
Show child attributes
⌘I

