# AI Trailblazer Company Fundamentals

> AI Trailblazer Company Fundamentals is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns provenance-rich company fundamental data for a single crypto public issuer by ticker symbol.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/company-fundamentals/:ticker
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-aitrailblazer-net-ec1aaca2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hJXTUKzBdsZuBIYB-IZuj

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-ec1aaca2
```

Example prompt: Can you pull up the company fundamentals for MSTR — I want to see their latest filing data including any available segment and related-party details?

## When to prefer this

Use this endpoint when you need structured, provenance-rich fundamental financial data for a single crypto public company (e.g. MicroStrategy, Coinbase, Marathon Digital) keyed by ticker. Prefer this over peer-ranking or stress-screening endpoints when the goal is detailed per-issuer fundamentals rather than comparative analysis or covenant stress signals.

## Known failure modes

- Unknown or unsupported ticker symbol returns 404 or empty result
- Invalid period date format (non-YYYY-MM-DD) may return 400 bad request
- No filing available for the requested period date returns empty or error
- Payment not included or insufficient USDC triggers x402 payment required response
- Service temporarily unavailable returns 5xx error

## How this service works

Provenance-rich company fundamentals for a single crypto public issuer.

## Output

Returns structured, provenance-annotated fundamental financial data for the requested crypto public issuer, including balance sheet metrics, filing period metadata, and flags for segment and related-party reporting availability (currently returned as available=false for expansion fields).

## 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": {
      "period": {
       "type": "string",
       "description": "Optional filing period date in YYYY-MM-DD format. Defaults to the latest available filing date for the ticker."
      },
      "include_segments": {
       "type": "boolean",
       "description": "Reserved expansion flag for segment reporting. Current runtime returns available=false."
      },
      "include_related_party": {
       "type": "boolean",
       "description": "Reserved expansion flag for related-party disclosures. Current runtime returns available=false."
      }
     }
    }
   },
   "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-ec1aaca2/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)
