Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_acceleration_signals()
# The 5 most recent acceleration signals:
for card in response.rows[:5]:
cadence = card.flag.split("_")[-1]
multiplier = card.end_value / card.start_value if card.start_value else 0
print(
f"{card.entity_id} {card.metric_name}: "
f"accelerating over {card.duration} {cadence} periods "
f"({multiplier:.2f}x over {card.date_range})"
)curl --request GET \
--url https://data-svc.artemisxyz.com/insights/acceleration/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/acceleration/', 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/acceleration/",
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/acceleration/"
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/acceleration/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/acceleration/")
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": "base",
"METRIC_NAME": "STABLECOIN_DAU",
"FLAG": "accel_weekly",
"UNIT": "NOMINAL",
"METRIC_TYPE": "snapshot",
"DURATION": 4,
"DATE_RANGE": "2026-04-15 to 2026-05-12",
"START_VALUE": 215000,
"END_VALUE": 412000,
"PERIOD_START_DATE": "2026-04-15",
"PERIOD_END_DATE": "2026-05-12",
"FISCAL_YEAR_END": null,
"FISCAL_PERIOD_END": null,
"LATEST_REPORT_DATE": null,
"SPARKLINE": [
{
"date": "2026-04-08",
"value": 198000
},
{
"date": "2026-04-15",
"value": 215000
},
{
"date": "2026-04-22",
"value": 268000
}
]
}
]
}Insights
List Accelerating-Trend Insight Cards
Entities where a metric’s rate of change is itself increasing across consecutive periods — second-derivative signal, useful for spotting inflection points before they show up as new ATHs.
Same card shape as the streak endpoints. START_VALUE is the level at the start of the acceleration window; END_VALUE is the level at the end. The interesting signal is not that END_VALUE > START_VALUE (true for growth streaks too) but that each period’s delta exceeds the previous period’s delta.
Cards are sorted by PERIOD_END_DATE descending.
GET
/
insights
/
acceleration
/
Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_acceleration_signals()
# The 5 most recent acceleration signals:
for card in response.rows[:5]:
cadence = card.flag.split("_")[-1]
multiplier = card.end_value / card.start_value if card.start_value else 0
print(
f"{card.entity_id} {card.metric_name}: "
f"accelerating over {card.duration} {cadence} periods "
f"({multiplier:.2f}x over {card.date_range})"
)curl --request GET \
--url https://data-svc.artemisxyz.com/insights/acceleration/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/acceleration/', 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/acceleration/",
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/acceleration/"
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/acceleration/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/acceleration/")
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": "base",
"METRIC_NAME": "STABLECOIN_DAU",
"FLAG": "accel_weekly",
"UNIT": "NOMINAL",
"METRIC_TYPE": "snapshot",
"DURATION": 4,
"DATE_RANGE": "2026-04-15 to 2026-05-12",
"START_VALUE": 215000,
"END_VALUE": 412000,
"PERIOD_START_DATE": "2026-04-15",
"PERIOD_END_DATE": "2026-05-12",
"FISCAL_YEAR_END": null,
"FISCAL_PERIOD_END": null,
"LATEST_REPORT_DATE": null,
"SPARKLINE": [
{
"date": "2026-04-08",
"value": 198000
},
{
"date": "2026-04-15",
"value": 215000
},
{
"date": "2026-04-22",
"value": 268000
}
]
}
]
}Response
200 - application/json
A feed of accelerating-trend insight cards.
Show child attributes
Show child attributes
⌘I

