# x402 Multi-Tool API – Stock Quote

> x402 Multi-Tool API – Stock Quote is a paid API for AI agents from x402deploy.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns real-time stock price, change, and market state for a given ticker symbol, paid per-request via x402 at $0.005 USDC.

## Facts

- Endpoint: POST https://x402deploy.vercel.app/api/stock
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-multi-tool-api-stock-quote-113fae11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_im5aMZLuUmrrrMzsQfxWE

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 x402-multi-tool-api-stock-quote-113fae11 -d '<json body>'
```

Example prompt: What's the current stock price of AAPL — including today's change and whether the market is open right now?

## When to prefer this

Choose this endpoint when you need a quick, no-auth stock quote for any major US-listed ticker and are already set up for x402 micropayments. At $0.005 USDC per call it is cost-effective for occasional lookups or agent workflows that need on-demand price checks without maintaining API keys for a dedicated financial data provider.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Market closed state may affect availability of real-time prices vs delayed quotes
- Payment failure via x402 (insufficient USDC balance or facilitator issue) blocks the request
- Network timeout on the upstream data provider returns a 5xx error
- Missing required 'symbol' field in request body returns a 400 validation error

## How this service works

Pay-per-request data toolkit for AI agents — 13 no-auth tools, $0.005 USDC each via x402. Web search, read URL, crypto price/markets/trending, Wikipedia, news headlines, weather, FX rates, IP geolocation, DNS lookup, stock quotes, and domain WHOIS.

## Output

Returns a JSON object with the ticker symbol, current price, absolute price change, percent change, previous close, exchange name, currency, and current market state (e.g. REGULAR, PRE, POST, CLOSED).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Ticker symbol, e.g. 'AAPL', 'MSFT', 'TSLA'"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "price": 308.63,
 "change": 3.53,
 "symbol": "AAPL",
 "currency": "USD",
 "exchange": "NMS",
 "market_state": "REGULAR",
 "change_percent": 1.16,
 "previous_close": 305.1
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-multi-tool-api-stock-quote-113fae11/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402deploy.vercel.app](https://www.zero.xyz/host/x402deploy.vercel.app/llms.txt)
