Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_growth_streaks()
# The 5 most recent growth streaks:
for card in response.rows[:5]:
cadence = card.flag.split("_")[-1] # "weekly" / "monthly" / "quarterly"
multiplier = card.end_value / card.start_value if card.start_value else 0
print(
f"{card.entity_id} {card.metric_name}: "
f"{card.duration} consecutive {cadence} periods "
f"({multiplier:.2f}x over {card.date_range})"
)curl --request GET \
--url https://data-svc.artemisxyz.com/insights/streaks/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/streaks/', 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/streaks/",
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/streaks/"
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/streaks/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/streaks/")
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": "solana",
"METRIC_NAME": "STABLECOIN_TRANSFER_VOLUME",
"FLAG": "streak_weekly",
"UNIT": "CURRENCY",
"METRIC_TYPE": "flow",
"DURATION": 6,
"DATE_RANGE": "2026-04-01 to 2026-05-12",
"START_VALUE": 4120000000,
"END_VALUE": 8950000000,
"PERIOD_START_DATE": "2026-04-01",
"PERIOD_END_DATE": "2026-05-12",
"FISCAL_YEAR_END": null,
"FISCAL_PERIOD_END": null,
"LATEST_REPORT_DATE": null,
"SPARKLINE": [
{
"date": "2026-03-25",
"value": 3850000000
},
{
"date": "2026-04-01",
"value": 4120000000
},
{
"date": "2026-04-08",
"value": 5230000000
}
]
}
]
}Insights
List Growth-Streak Insight Cards
Entities where a metric has increased for DURATION consecutive periods. FLAG encodes the cadence (streak_weekly, streak_monthly, or streak_quarterly), START_VALUE and END_VALUE bracket the streak, and DATE_RANGE gives a human-readable window. SPARKLINE includes one prior-period baseline bar so charts have context on either side of the trend.
Cards are sorted by PERIOD_END_DATE descending — most recent streaks first.
Related: list_acceleration_signals for second-derivative trends, list_all_time_highs for streaks that culminated in a record.
GET
/
insights
/
streaks
/
Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_growth_streaks()
# The 5 most recent growth streaks:
for card in response.rows[:5]:
cadence = card.flag.split("_")[-1] # "weekly" / "monthly" / "quarterly"
multiplier = card.end_value / card.start_value if card.start_value else 0
print(
f"{card.entity_id} {card.metric_name}: "
f"{card.duration} consecutive {cadence} periods "
f"({multiplier:.2f}x over {card.date_range})"
)curl --request GET \
--url https://data-svc.artemisxyz.com/insights/streaks/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/streaks/', 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/streaks/",
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/streaks/"
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/streaks/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/streaks/")
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": "solana",
"METRIC_NAME": "STABLECOIN_TRANSFER_VOLUME",
"FLAG": "streak_weekly",
"UNIT": "CURRENCY",
"METRIC_TYPE": "flow",
"DURATION": 6,
"DATE_RANGE": "2026-04-01 to 2026-05-12",
"START_VALUE": 4120000000,
"END_VALUE": 8950000000,
"PERIOD_START_DATE": "2026-04-01",
"PERIOD_END_DATE": "2026-05-12",
"FISCAL_YEAR_END": null,
"FISCAL_PERIOD_END": null,
"LATEST_REPORT_DATE": null,
"SPARKLINE": [
{
"date": "2026-03-25",
"value": 3850000000
},
{
"date": "2026-04-01",
"value": 4120000000
},
{
"date": "2026-04-08",
"value": 5230000000
}
]
}
]
}Response
200 - application/json
A feed of growth-streak insight cards.
Show child attributes
Show child attributes
⌘I

