# Yahoo Finance Enhanced Stock Quote Lookup

> Yahoo Finance Enhanced Stock Quote Lookup is a paid API for AI agents from market.memoryapi.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches real-time enhanced stock quotes from Yahoo Finance including bid/ask, P/E ratio, 52-week high/low, and market cap for any ticker symbol.

## Facts

- Endpoint: GET https://market.memoryapi.org/x402/market/yahoo
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market-memoryapi-org-5b6eeff7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__J5AkKHqqVAoHDWxgkEjx

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 market-memoryapi-org-5b6eeff7
```

Example prompt: Can you pull up the current real-time quote for NVDA including the bid/ask prices, P/E ratio, 52-week high and low, and market cap?

## When to prefer this

Use this endpoint when you need real-time bid/ask spread data combined with fundamental valuation metrics like P/E ratio and market cap for a stock ticker — especially when you need more detail than a basic last-price quote. Prefer this over generic quote APIs when you need the full suite of Yahoo Finance enriched data in a single call.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Ticker for delisted or OTC securities may return incomplete data
- Yahoo Finance rate limiting or downtime may cause transient failures
- Non-US or less common tickers may have incomplete P/E or market cap data

## How this service works

Enhanced Yahoo Finance quotes — real-time bid/ask, P/E, 52-week high/low, market cap for any ticker.

## Output

Returns enhanced Yahoo Finance quote data for the requested ticker including real-time bid price, ask price, price-to-earnings ratio, 52-week high, 52-week low, and market capitalization.

## Example request

```json
{
 "cik": "0001067983"
}
```

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "count",
  "quotes",
  "source",
  "success"
 ],
 "properties": {
  "count": {
   "type": "number"
  },
  "quotes": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "ask",
     "bid",
     "symbol",
     "marketCap",
     "trailingPE",
     "fiftyTwoWeekLow",
     "postMarketPrice",
     "fiftyTwoWeekHigh",
     "regularMarketPrice",
     "regularMarketChange",
     "regularMarketVolume",
     "regularMarketChangePercent"
    ],
    "properties": {
     "ask": {
      "type": "number"
     },
     "bid": {
      "type": "number"
     },
     "symbol": {
      "type": "string"
     },
     "marketCap": {
      "type": "number"
     },
     "trailingPE": {
      "type": "number"
     },
     "fiftyTwoWeekLow": {
      "type": "number"
     },
     "postMarketPrice": {
      "type": "number"
     },
     "fiftyTwoWeekHigh": {
      "type": "number"
     },
     "regularMarketPrice": {
      "type": "number"
     },
     "regularMarketChange": {
      "type": "number"
     },
     "regularMarketVolume": {
      "type": "number"
     },
     "regularMarketChangePercent": {
      "type": "number"
     }
    }
   }
  },
  "source": {
   "type": "string"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market-memoryapi-org-5b6eeff7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from market.memoryapi.org](https://www.zero.xyz/host/market.memoryapi.org/llms.txt)
