Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_all_time_lows()
# The 5 sharpest new lows:
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_below_previous:.1f}% vs prior ATL)"
)curl --request GET \
--url https://data-svc.artemisxyz.com/insights/atl/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/atl/', 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/atl/",
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/atl/"
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/atl/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/atl/")
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": "equity",
"ENTITY_ID": "RKT",
"METRIC_NAME": "gross_profit",
"HORIZON": "quarterly",
"UNIT": "CURRENCY",
"METRIC_TYPE": "snapshot",
"NEW_VALUE": -54357000,
"NEW_DATE": "2024-07-01",
"PREVIOUS_ATL_VALUE": 18283000,
"PREVIOUS_ATL_DATE": "2023-01-01",
"PERCENT_BELOW_PREVIOUS": 397.31,
"PERIOD_END_DATE": "2024-09-30",
"FISCAL_YEAR": 2024,
"FISCAL_PERIOD": "Q3",
"REPORT_DATE": "2024-09-30",
"SPARKLINE": [
{
"date": "2024-01-01",
"value": 41200000
},
{
"date": "2024-04-01",
"value": -12450000
},
{
"date": "2024-07-01",
"value": -54357000
}
]
}
]
}Insights
List All-Time-Low Insight Cards
Recent all-time-low events across the same coverage as ATH cards. Each card carries the new low (NEW_VALUE), the previous ATL for comparison (PREVIOUS_ATL_VALUE and PREVIOUS_ATL_DATE), and the percent below the prior low (PERCENT_BELOW_PREVIOUS). For equity metrics with a fiscal calendar, FISCAL_YEAR / FISCAL_PERIOD / PERIOD_END_DATE are populated.
Cards are sorted by PERCENT_BELOW_PREVIOUS descending — biggest crashes first.
Related: list_all_time_highs, list_decline_streaks.
GET
/
insights
/
atl
/
Python
from artemis import Artemis
client = Artemis()
response = client.insights.list_all_time_lows()
# The 5 sharpest new lows:
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_below_previous:.1f}% vs prior ATL)"
)curl --request GET \
--url https://data-svc.artemisxyz.com/insights/atl/const options = {method: 'GET'};
fetch('https://data-svc.artemisxyz.com/insights/atl/', 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/atl/",
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/atl/"
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/atl/")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-svc.artemisxyz.com/insights/atl/")
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": "equity",
"ENTITY_ID": "RKT",
"METRIC_NAME": "gross_profit",
"HORIZON": "quarterly",
"UNIT": "CURRENCY",
"METRIC_TYPE": "snapshot",
"NEW_VALUE": -54357000,
"NEW_DATE": "2024-07-01",
"PREVIOUS_ATL_VALUE": 18283000,
"PREVIOUS_ATL_DATE": "2023-01-01",
"PERCENT_BELOW_PREVIOUS": 397.31,
"PERIOD_END_DATE": "2024-09-30",
"FISCAL_YEAR": 2024,
"FISCAL_PERIOD": "Q3",
"REPORT_DATE": "2024-09-30",
"SPARKLINE": [
{
"date": "2024-01-01",
"value": 41200000
},
{
"date": "2024-04-01",
"value": -12450000
},
{
"date": "2024-07-01",
"value": -54357000
}
]
}
]
}Response
200 - application/json
A feed of all-time-low insight cards.
Show child attributes
Show child attributes
⌘I

