# DeepSearch Multi-Period Financial Statements API

> DeepSearch Multi-Period Financial Statements API is a paid API for AI agents from x402.deepsearch.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns up to 8 quarters of key financial statements (revenue, gross profit, operating profit, net income, assets, liabilities, equity) for a listed company by ticker symbol.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/financials/:ticker
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-multi-period-financial-statements-api-03c98453
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SMleuzxemuXx123aecfHm

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 deepsearch-multi-period-financial-statements-api-03c98453
```

Example prompt: Pull up the last 8 quarters of financials for Apple — revenue, operating profit, net income, and balance sheet items — from the DeepSearch API using the NASDAQ ticker AAPL.

## When to prefer this

Choose this endpoint when you need a concise historical financial snapshot (up to 8 quarters) for fundamental analysis, trend detection, or financial modeling of a KRX, NASDAQ, or NYSE listed company. Prefer this over the full-history endpoint when you only need recent quarters and want a faster, lighter response. Use the longer-history endpoint if you need more than 8 quarters of data.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Wrong exchange code causes ticker mismatch or no data found
- Ticker exists but has fewer than 8 quarters of available history — partial data returned
- Network or payment failure (x402 micropayment not processed) blocks the response
- KRX 6-digit codes may conflict with similarly-formatted non-KRX tickers if exchange is not specified

## How this service works

Multi-period financial statements for a listed company. Returns up to 8 quarters of revenue, gross profit, operating profit, net income, total assets, liabilities, and equity. Use when an agent needs historical financial trends.

## Output

Returns a structured JSON object with up to 8 quarters of financial statement data per company, including revenue, gross profit, operating profit, net income, total assets, total liabilities, and shareholders' equity, indexed by period.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL",
   "exchange": "NASDAQ"
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "6-digit KRX ticker or NASDAQ/NYSE symbol (e.g. 005930, AAPL)"
      },
      "exchange": {
       "type": "string",
       "description": "Exchange code: KRX (default), NASDAQ, NYSE"
      }
     }
    }
   },
   "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/deepsearch-multi-period-financial-statements-api-03c98453/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.deepsearch.com](https://www.zero.xyz/host/x402.deepsearch.com/llms.txt)
