# DataVault Stock Data

> DataVault Stock Data is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Fetches real-time or current stock market data for a given ticker symbol

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/stock
- 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/datavault-stock-data-261fed5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5xflFbXLDxhwtxXQcQLho

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 datavault-stock-data-261fed5c -d '<json body>'
```

Example prompt: What is the current stock price and market data for TSLA?

## When to prefer this

Use this endpoint when you need quick, pay-per-call stock quote or market data lookups for individual ticker symbols without committing to a subscription. Ideal for AI agents that occasionally need stock prices without maintaining a dedicated financial data API integration.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty data
- Market closed or after-hours may return stale or unavailable data
- Payment failure (insufficient USDC) results in 402 response and no data
- Network timeout or upstream data provider outage returns error

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

A JSON object containing a success flag and a data object with stock market information for the requested ticker symbol, such as price, volume, and other relevant market metrics.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-stock-data-261fed5c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
