# The Stall — Multi-Ticker Stock Price Lookup

> The Stall — Multi-Ticker Stock Price Lookup is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.059/call, status unknown (last checked 2026-09-13).

Fetches current stock prices for multiple ticker symbols in a single call, paid via USDC on Base mainnet with no account or API key required.

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/stock-price-multi
- Price: $0.059/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-multi-ticker-stock-price-lookup-4b74c03e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-VAVlv9tokIVkl8jkn77r

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 the-stall-multi-ticker-stock-price-lookup-4b74c03e
```

Example prompt: What are the current stock prices for AAPL, MSFT, and NVDA right now? Pay for it via USDC on Base.

## When to prefer this

Use this endpoint when you need prices for multiple stock tickers in a single API call and want to avoid account registration or API key management — ideal for AI agents that can pay micro-fees in USDC on Base mainnet. Prefer over single-ticker endpoints when batching lookups for efficiency.

## Known failure modes

- Invalid or unrecognized ticker symbols return an error or null entry
- Network timeout from upstream data provider causes delayed or failed response
- Payment of 0.018 USDC fails or is rejected on Base mainnet, returning HTTP 402
- Malformed tickers string (wrong delimiter or format) may cause parsing error
- Market closed hours may return last closing price or stale data rather than real-time

## How this service works

Returns current US equity prices for up to 5 tickers in one call — STRC, AMD, MSTR, SLV, USO, or any NYSE/NASDAQ symbol. Each call returns price, change %, volume, day range, and 52-week range per ticker. Sourced from Yahoo Finance public data, no API key. A single $0.018 call replaces 3-5 separate blockrun.ai queries that total $0.066–$0.220.

## Output

Returns current market prices for each requested ticker symbol, likely including price per share and possibly basic quote metadata for each of the submitted tickers.

## Example request

```json
{
 "tickers": "AAPL,GOOGL,MSFT"
}
```

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-multi-ticker-stock-price-lookup-4b74c03e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
