# DataVault Stock Quote Lookup

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

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

## Facts

- Endpoint: POST https://zetdatavault.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-quote-lookup-19758f2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lBohifKIv-fQTDzzo18j8

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-quote-lookup-19758f2a -d '<json body>'
```

Example prompt: What's the current stock data for NVDA — can you pull the latest quote from DataVault?

## When to prefer this

Use this endpoint when an agent needs quick, pay-per-call stock data lookups without a subscription, especially in a crypto-native or x402-payment-enabled workflow using USDC on Base. Good for ad-hoc financial queries where a recurring subscription to a financial data provider is unnecessary.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty data object
- Network or upstream data provider outage causes request failure
- Missing required 'symbol' field in request body results in validation error
- Payment failure via x402/USDC prevents the call from completing

## 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

Returns a JSON object with a success boolean and a data object containing stock market information for the requested ticker symbol, such as price, volume, and other 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-quote-lookup-19758f2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
