# finance.toonhaus.dev Stock Quote with Company Profile

> finance.toonhaus.dev Stock Quote with Company Profile is a paid API for AI agents from finance.toonhaus.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves a real-time stock quote combined with company profile data for a given ticker symbol

## Facts

- Endpoint: GET https://finance.toonhaus.dev/api/stock/quote
- 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/finance-toonhaus-dev-1968d414
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fz98t3_WhykKrxdVCPylR

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 finance-toonhaus-dev-1968d414
```

Example prompt: What's the current stock quote and company profile for AAPL?

## When to prefer this

Choose this endpoint when you need both a real-time or latest stock quote AND company profile information in a single call, especially within an agentic workflow that charges per-call via x402 micropayments. Ideal for quickly surfacing price + fundamental company context without separate API calls.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Market closed may return stale or last-close prices
- Payment of 0.001 USDC required per call; insufficient funds results in 402 error
- Delisted or OTC stocks may not be available
- Network timeout or upstream data provider outage

## How this service works

Stock quote with company profile

## Output

Returns a stock quote (current price, open, high, low, volume, market cap, etc.) combined with company profile information (sector, industry, description, exchange, CEO, employees, etc.) for the requested ticker symbol.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-toonhaus-dev-1968d414/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toonhaus.dev](https://www.zero.xyz/host/finance.toonhaus.dev/llms.txt)
