Skip to main content
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)"
    )
{
  "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
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://artemis.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

A feed of all-time-high insight cards.

rows
object[]
required