# JeetScreener Financial Statements & Key Metrics

> JeetScreener Financial Statements & Key Metrics is a paid API for AI agents from jeetscreener.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches comprehensive financial statements and key valuation/performance metrics for a specified stock ticker symbol.

## Facts

- Endpoint: GET https://jeetscreener.io/api/market/financials/AAPL
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jeetscreener-io-5802b31e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IS_BsrMfhtKQut5W8gJKW

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 jeetscreener-io-5802b31e
```

Example prompt: What are the key financial metrics for AAPL right now — things like market cap, EV/EBITDA, debt-to-equity, free cash flow, and return on equity?

## When to prefer this

Use this endpoint when you need fundamental financial metrics and valuation ratios for a single stock ticker, especially for tasks like screening, valuation analysis, or portfolio research. Prefer this over quote endpoints when you need ratios like EV/EBITDA, ROE, or debt-to-equity rather than real-time price data.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty response
- P/B and P/E ratio fields may return null for some tickers
- Network timeout if the data provider is slow
- Payment failure if USDC balance is insufficient for the $0.001 per-call fee

## How this service works

Fetch comprehensive financial statements and key metrics for a specified stock symbol (e.g., AAPL) from JeetScreener.

## Output

Returns a JSON object containing the ticker symbol, date, market capitalization, EV/EBITDA ratio, debt-to-equity ratio, free cash flow, return on equity, P/B ratio, and P/E ratio for the requested stock.

## Example request

```json
{
 "ticker": "AAPL"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "ticker": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "date",
  "ticker",
  "pbRatio",
  "peRatio",
  "marketCap",
  "evToEbitda",
  "debtToEquity",
  "freeCashFlow",
  "returnOnEquity"
 ],
 "properties": {
  "date": {
   "type": "string"
  },
  "ticker": {
   "type": "string"
  },
  "pbRatio": {
   "type": "null"
  },
  "peRatio": {
   "type": "null"
  },
  "marketCap": {
   "type": "number"
  },
  "evToEbitda": {
   "type": "number"
  },
  "debtToEquity": {
   "type": "number"
  },
  "freeCashFlow": {
   "type": "number"
  },
  "returnOnEquity": {
   "type": "number"
  }
 }
}
```

## More

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