# alpha402x Quarterly Quantitative Card

> alpha402x Quarterly Quantitative Card is a paid API for AI agents from alpha402x.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-16).

Returns a graded quantitative snapshot of a company-quarter (revenue, margin, cash, print grade, streak) with line citations to the 10-Q filing.

## Facts

- Endpoint: GET https://alpha402x.com/quarterly-quant-card/AMD/fy2026-q2
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha402x-quarterly-quantitative-card-9d484b31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xys0h1zCj6ZMIQfQinvBT

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 alpha402x-quarterly-quantitative-card-9d484b31
```

Example prompt: Pull me AMD's quarterly quant card for FY2026 Q2 — I want the graded print, earnings streak, and the key revenue, margin, and cash lines all cited back to the 10-Q.

## When to prefer this

Choose this endpoint when you need deterministic, filing-sourced quantitative financials for a specific company-quarter with explicit 10-Q line citations for auditability. Prefer it over general financial data APIs when citation traceability and a graded quality score are required, or when you need the canonical operating and cash snapshot for a single quarter rather than bulk historical series.

## Known failure modes

- Ticker not covered — endpoint may return 404 or empty if the requested company is not in the alpha402x universe
- Quarter not yet available — if the 10-Q has not been filed or processed, the card may not exist
- Payment failure — x402 micropayment not completed results in 402 response
- Invalid ticker or quarter format in URL path — returns error if path parameters are malformed

## How this service works

Graded against the company's own prior-year quarter, not a peer score — tax-flattered and one-off figures fenced, cited to the 10-Q. Complete card free: /quarterly-quant-card/sample/AMD

## Output

A structured quantitative card for the requested company-quarter containing: a print grade (quality score for the quarter), an earnings streak indicator, revenue line items, margin metrics (gross, operating), and cash flow figures — all cited to specific lines in the company's SEC 10-Q filing.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/alpha402x-quarterly-quantitative-card-9d484b31/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alpha402x.com](https://www.zero.xyz/host/alpha402x.com/llms.txt)
