Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_decline_streaks()
# The 5 most recent decline streaks:
for card in response.rows[:5]:
cadence = card.flag.split("_")[-1]
drop_pct = (1 - card.end_value / card.start_value) * 100 if card.start_value else 0
print(
f"{card.entity_id} {card.metric_name}: "
f"{card.duration} consecutive {cadence} periods of decline "
f"(-{drop_pct:.1f}% over {card.date_range})"
)
curl --request GET \
--url https://data-svc.artemisxyz.com/insights/decline-streaks/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/decline-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/decline-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/decline-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/decline-streaks/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/decline-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": "optimism",
"METRIC_NAME": "DAILY_TXNS",
"FLAG": "decline_streak_weekly",
"UNIT": "NOMINAL",
"METRIC_TYPE": "flow",
"DURATION": 5,
"DATE_RANGE": "2026-04-08 to 2026-05-12",
"START_VALUE": 1480000,
"END_VALUE": 920000,
"PERIOD_START_DATE": "2026-04-08",
"PERIOD_END_DATE": "2026-05-12",
"FISCAL_YEAR_END": null,
"FISCAL_PERIOD_END": null,
"LATEST_REPORT_DATE": null,
"SPARKLINE": [
{
"date": "2026-04-01",
"value": 1620000
},
{
"date": "2026-04-08",
"value": 1480000
},
{
"date": "2026-04-15",
"value": 1340000
}
]
}
]
}Insights
List Decline-Streak Insight Cards
Entities where a metric has decreased for DURATION consecutive periods. Same card shape as growth streaks; END_VALUE < START_VALUE is the distinguishing signal. SPARKLINE includes a longer lead-in window (12+ periods) so the chart shows the full peak-to-decline arc.
Cards are sorted by PERIOD_END_DATE descending — most recent declines first.
Related: list_all_time_lows for declines that bottomed out at a record.
GET
/
insights
/
decline-streaks
/
Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_decline_streaks()
# The 5 most recent decline streaks:
for card in response.rows[:5]:
cadence = card.flag.split("_")[-1]
drop_pct = (1 - card.end_value / card.start_value) * 100 if card.start_value else 0
print(
f"{card.entity_id} {card.metric_name}: "
f"{card.duration} consecutive {cadence} periods of decline "
f"(-{drop_pct:.1f}% over {card.date_range})"
)
curl --request GET \
--url https://data-svc.artemisxyz.com/insights/decline-streaks/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/decline-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/decline-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/decline-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/decline-streaks/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/decline-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": "optimism",
"METRIC_NAME": "DAILY_TXNS",
"FLAG": "decline_streak_weekly",
"UNIT": "NOMINAL",
"METRIC_TYPE": "flow",
"DURATION": 5,
"DATE_RANGE": "2026-04-08 to 2026-05-12",
"START_VALUE": 1480000,
"END_VALUE": 920000,
"PERIOD_START_DATE": "2026-04-08",
"PERIOD_END_DATE": "2026-05-12",
"FISCAL_YEAR_END": null,
"FISCAL_PERIOD_END": null,
"LATEST_REPORT_DATE": null,
"SPARKLINE": [
{
"date": "2026-04-01",
"value": 1620000
},
{
"date": "2026-04-08",
"value": 1480000
},
{
"date": "2026-04-15",
"value": 1340000
}
]
}
]
}Response
200 - application/json
A feed of decline-streak insight cards.
Show child attributes
Show child attributes
⌘I

