# DeltaSignal ATLAS History – Bitcoin Treasury Company Risk Time Series

> DeltaSignal ATLAS History – Bitcoin Treasury Company Risk Time Series is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns a paginated time series of ATLAS-computed risk and stress metrics for a crypto-holding public company by ticker symbol

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/atlas-history/%7Bticker%7D
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deltasignal-atlas-history-bitcoin-treasury-company-risk-time-series-a2b72b12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dFD6RBhaAjwQZuNgu1VKn

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability deltasignal-atlas-history-bitcoin-treasury-company-risk-time-series-a2b72b12
```

Example prompt: Pull the DeltaSignal ATLAS risk history for MSTR from 2025-01-01 to 2025-05-10, returning up to 200 rows starting at offset 0, so I can see how MicroStrategy's live risk tier and Bitcoin stress scores have changed over time.

## When to prefer this

Choose this endpoint when you need a historical time series of ATLAS risk, stress, and Bitcoin treasury metrics for a specific crypto-holding public company (e.g. MSTR, SMLR, CLSK). It is purpose-built for paginated lookups with optional date-range filtering. Prefer this over point-in-time endpoints when trend analysis, backtesting, or temporal comparison across many dates is needed.

## Known failure modes

- Invalid or unknown ticker symbol returns empty data array or 404
- Date range with no ATLAS rows returns empty data array
- limit exceeding 2000 is capped silently at 2000
- Missing required ticker path parameter returns 400 or routing error
- Payment not completed via x402 returns 402 Payment Required
- Source dates in wrong format (not YYYY-MM-DD) may return 400 or unexpected results

## How this service works

DeltaSignal Azure Marketplace and x402 agentic market frontend.

## Output

A JSON object containing an array of dated ATLAS rows for the requested ticker, each row including the CIK, source date, live_risk_tier (e.g. LOW/MEDIUM/HIGH), live_stress_50pct score, bitcoin_units_held, debt_coverage_status, and atlas_history_source. Also returns the ticker, join_key, and lookup_ticker at the top level.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Crypto public company ticker symbol."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Maximum dated ATLAS rows to return. Defaults to 500 and is capped at 2000."
      },
      "offset": {
       "type": "integer",
       "description": "Pagination offset over dated ATLAS rows."
      },
      "source_date_to": {
       "type": "string",
       "description": "Optional inclusive ATLAS source-date upper bound in YYYY-MM-DD format."
      },
      "source_date_from": {
       "type": "string",
       "description": "Optional inclusive ATLAS source-date lower bound in YYYY-MM-DD format."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "cik": "0001050446",
    "ticker": "MSTR",
    "source_date": "2026-05-10",
    "atlas_join_key": "source_date",
    "live_risk_tier": "LOW",
    "live_stress_50pct": 0.2482,
    "bitcoin_units_held": 818334,
    "atlas_history_source": "crypto_covenant_stress_precomputed",
    "debt_coverage_status": "resolved_nonzero"
   }
  ],
  "ticker": "MSTR",
  "join_key": "source_date",
  "lookup_ticker": "MSTR"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deltasignal-atlas-history-bitcoin-treasury-company-risk-time-series-a2b72b12/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aitrailblazer.net](https://www.zero.xyz/host/api.aitrailblazer.net/llms.txt)
