# DeepSearch US Stock Intelligence API

> DeepSearch US Stock Intelligence 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-13).

Fetches up to 3 years of daily price history and up to 10 years of financials for a given US stock ticker symbol

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/us/stock/%7Bticker%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-us-stock-intelligence-api-7b185d84
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iskiLgeZk9xWF5IrG7FcV

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-us-stock-intelligence-api-7b185d84
```

Example prompt: Pull up NVDA's stock data from DeepSearch — I need the daily price history and financials for it on NASDAQ.

## When to prefer this

Choose this endpoint when you need historical daily price data or multi-year financial history for US-listed stocks (NASDAQ or NYSE), especially when you want pay-per-query access without a subscription. Ideal for agents performing one-off financial lookups, research tasks, or building lightweight stock analysis workflows with USDC micropayments on Base Mainnet.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Missing required ticker query parameter causes a 400 bad request
- Payment failure or insufficient USDC balance blocks the request via x402 protocol
- Unsupported exchange value may cause a lookup failure
- Rate limits or network errors may cause intermittent failures

## How this service works

Up to 10 years of financials + 3 years of daily price history for all 2,000+ KRX stocks. Pay-per-query with USDC on Base Mainnet — no subscription.

## Output

Returns a JSON object with the stock's closing price, date, ticker symbol, and exchange name. May also include up to 3 years of daily price history and up to 10 years of financial data depending on availability for the requested ticker.

## 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": "US symbol, e.g. AAPL, NVDA, TSM"
      },
      "exchange": {
       "type": "string",
       "description": "NASDAQ (default probe) or NYSE"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-07-15",
  "close": 212.5,
  "ticker": "NVDA",
  "exchange": "NASDAQ"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deepsearch-us-stock-intelligence-api-7b185d84/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)
