# StableFinance Line Items Search

> StableFinance Line Items Search is a paid API for AI agents from stablefinance.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Retrieve specific financial statement line items (e.g. revenue, EBITDA, net income) across a list of stock tickers.

## Facts

- Endpoint: POST https://stablefinance.dev/api/financials/search/line-items
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablefinance-dev-db00a0b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4fZiqYo0rrBReMe6_D808

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 stablefinance-dev-db00a0b2 -d '<json body>'
```

Example prompt: Pull revenue, gross profit, and free cash flow for AAPL, MSFT, NVDA, and GOOGL from their most recent annual financials so I can compare them side by side.

## When to prefer this

Use this endpoint when you need specific named financial line items across multiple tickers simultaneously, rather than pulling full financial statements or screening by criteria. It is ideal for portfolio-level fundamental comparisons where you know exactly which metrics you want.

## Known failure modes

- Unsupported ticker symbol returns an error or empty result for that ticker
- Invalid or misspelled line item name returns no data for that field
- Rate limiting or payment failure returns 402 or 429 status
- Stale or missing data for smaller/international tickers
- Partial results if some tickers have incomplete filings

## How this service works

Pull specific line items across a list of tickers.

## Output

Returns the requested financial statement line item values for each specified ticker, structured by company, enabling cross-ticker comparison of specific metrics such as revenue, net income, EBITDA, or any other supported line item.

## Example request

```json
{
 "input": {
  "body": {
   "limit": 10,
   "period": "annual",
   "tickers": [
    "AAPL",
    "MSFT"
   ],
   "line_items": [
    "revenue",
    "net_income"
   ]
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 50,
   "minimum": 1
  },
  "period": {
   "enum": [
    "annual",
    "quarterly",
    "ttm"
   ],
   "type": "string"
  },
  "tickers": {
   "type": "array",
   "items": {
    "type": "string",
    "minLength": 1
   },
   "minItems": 1
  },
  "line_items": {
   "type": "array",
   "items": {
    "type": "string",
    "minLength": 1
   },
   "minItems": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "search_results": [
   {
    "period": "ttm",
    "ticker": "AAPL",
    "revenue": 451442000000,
    "currency": "USD",
    "report_period": "2026-03-28",
    "free_cash_flow": 129174000000
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablefinance-dev-db00a0b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablefinance.dev](https://www.zero.xyz/host/stablefinance.dev/llms.txt)
