# Agent Wonderland Stock Quote & Profile

> Agent Wonderland Stock Quote & Profile is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Returns real-time stock quote, company profile, key financial metrics, analyst recommendations, and 30-day price history for a given ticker by combining Finnhub and FMP data sources.

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/stock-quote-and-profile
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-wonderland-stock-quote-profile-b140b237
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ku8aVCfPirmP-a-kJfwWm

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 agent-wonderland-stock-quote-profile-b140b237 -d '<json body>'
```

Example prompt: Can you pull the current stock quote and full company profile for NVDA, including analyst recommendations and the last 30 days of price history?

## When to prefer this

Use this endpoint when you need a comprehensive, combined stock snapshot that aggregates real-time quote data with company profile, financial metrics, analyst sentiment, and price history in a single call. Prefer this over raw Finnhub or FMP calls when you want a unified, agent-ready response without managing multiple API keys or stitching data sources together yourself.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty data
- Rate limits or upstream API outages from Finnhub or FMP may cause partial or failed responses
- Delisted or OTC stocks may have incomplete data
- include_history=true adds latency and cost; missing data for thinly traded stocks
- Payment failure (x402) results in 402 response before any data is returned

## How this service works

Stock Quote & Profile: Get real-time stock quote, company profile, key financial metrics, analyst recommendations, and price history. Combines Finnhub (real-time quote, metrics, recommendations) with FMP (profile, history).

## Output

A JSON object containing: current real-time stock quote (price, change, volume), optional company profile (description, sector, market cap, exchange), optional key financial metrics (P/E ratio, EPS, 52-week range, etc.), optional analyst recommendations (buy/hold/sell counts), and optional 30-day daily OHLCV price history.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "title": "Ticker",
   "description": "Stock ticker symbol",
   "json_schema_extra": {
    "example": "AAPL"
   }
  },
  "include_history": {
   "type": "boolean",
   "title": "Include History",
   "default": false,
   "description": "Include 30 days of daily price history"
  },
  "include_profile": {
   "type": "boolean",
   "title": "Include Profile",
   "default": true,
   "description": "Include company profile and key metrics"
  },
  "include_recommendations": {
   "type": "boolean",
   "title": "Include Recommendations",
   "default": false,
   "description": "Include analyst recommendations"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-wonderland-stock-quote-profile-b140b237/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
