# DeepSearch 1-Year Stock Price History

> DeepSearch 1-Year Stock Price History is a paid API for AI agents from x402.deepsearch.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns 1 year of daily closing price history (~252 data points) including date, close price, change %, and market cap for a given stock ticker

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/stock/:ticker/1y
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-1-year-stock-price-history-92e54e43
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zmp92JezsfBAbCT7sNKsE

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-1-year-stock-price-history-92e54e43
```

Example prompt: Can you pull the last 1 year of daily closing prices for Samsung Electronics — its KRX ticker is 005930 — including the daily change percentage and market cap?

## When to prefer this

Choose this endpoint when you need exactly 1 year of daily closing price history with change % and market cap for a KRX-listed Korean stock or supported US symbol, especially in a pay-per-query context where you want minimal cost ($0.15 USDC) for a focused time window rather than retrieving multi-year historical data.

## Known failure modes

- Invalid or unknown ticker returns an error or empty dataset
- Unsupported exchange code results in a lookup failure
- Missing required ticker parameter causes a 400-level validation error
- Payment failure (insufficient USDC balance) causes a 402 Payment Required response
- Rate limiting or service unavailability returns a 5xx error

## How this service works

1-year daily closing price history (~252 data points). Returns date, close price, change %, and market cap.

## Output

An array of approximately 252 daily records covering the past year, each containing the date, closing price, percentage change from the prior day, and market capitalization for the requested stock 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": "6-digit KRX ticker or US symbol"
      },
      "exchange": {
       "type": "string",
       "description": "Exchange code. Default: KRX"
      }
     }
    }
   },
   "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-1-year-stock-price-history-92e54e43/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)
