# fittings XBRL Ticker Financials

> fittings XBRL Ticker Financials is a paid API for AI agents from fittings.sh, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the latest and recent XBRL financial concept values (e.g. Revenues, Assets) for a US public company identified by ticker symbol.

## Facts

- Endpoint: GET https://fittings.sh/v1/sec/ticker-financials
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-xbrl-ticker-financials-6360dbcd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5e1rFMIbBpg0onNKBPHzM

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 fittings-xbrl-ticker-financials-6360dbcd
```

Example prompt: What are Apple's most recent Revenues according to their SEC XBRL filings? Look up the Revenues concept for ticker AAPL.

## When to prefer this

Use this endpoint when you need structured, XBRL-tagged financial figures for US public companies directly from SEC filings, especially when you want a specific named concept (Revenues, Assets, EPS) for a given ticker. Prefer this over web scraping or earnings press releases when you need machine-readable, standardized financial data tied to official regulatory filings.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Unknown or misspelled XBRL concept name returns no data
- Company has not filed the requested concept (e.g. a bank reporting interest income differently) returns empty
- SEC data may lag actual filings by days
- Non-US or OTC-only companies may not have data

## How this service works

Latest and recent values of an XBRL concept, such as Revenues or Assets, for a US public company named by ticker.

## Output

Returns the most recent and historical reported values for the requested US-GAAP XBRL concept (e.g. Revenues, Assets) for the specified company, drawn from SEC filings. Typically includes the value, unit, and reporting period for each data point.

## 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",
     "required": [
      "ticker",
      "concept"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Exchange ticker, e.g. AAPL"
      },
      "concept": {
       "type": "string",
       "description": "US-GAAP concept, e.g. Revenues or Assets"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-xbrl-ticker-financials-6360dbcd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
