# ATLAS-7 Historical Covenant & Stress Series

> ATLAS-7 Historical Covenant & Stress 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 paginated time-series of ATLAS-7 covenant and stress data for a single crypto public company issuer, keyed by source_date for mNAV and Mirror Pulse joins.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/atlas-history/:ticker
- 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/api-aitrailblazer-net-eeef5133
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jEOp_0jL4bdP3tJC0OxXb

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 api-aitrailblazer-net-eeef5133
```

Example prompt: Pull the ATLAS-7 historical covenant and stress series for MSTR from January 1 2024 through June 30 2024, returning up to 500 rows, so I can join it with mNAV data.

## When to prefer this

Use this endpoint when you need historical time-series ATLAS-7 covenant and stress data for a specific crypto public issuer, particularly for date-range queries or when joining with mNAV or Mirror Pulse datasets. Prefer over the single-issuer ATLAS detail endpoint when you need multiple dated snapshots rather than the current state.

## Known failure modes

- Invalid or unknown ticker symbol returns empty results or 404
- source_date_from / source_date_to in wrong format (not YYYY-MM-DD) causes validation error
- limit exceeding 2000 is capped silently or returns error
- Payment not provided or insufficient USDC causes 402 response
- offset out of range returns empty result set

## How this service works

Historical ATLAS-7 covenant and stress series for one issuer, keyed by source_date for mNAV and Mirror Pulse joins.

## Output

A paginated list of dated ATLAS-7 rows for the requested issuer, each keyed by source_date and containing covenant stress metrics suitable for joining with mNAV and Mirror Pulse datasets. Supports up to 2000 rows per request with offset-based pagination.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-aitrailblazer-net-eeef5133/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)
