# finance.toon.haus Company Peers

> finance.toon.haus Company Peers is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a list of peer/comparable companies for a given stock ticker symbol

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/peers
- 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-toon-haus-1e9281cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gX7zVDHBG7t6y-jFrED-3

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-toon-haus-1e9281cf
```

Example prompt: What companies are considered peers of Tesla — can you pull up the peer group for TSLA so I can see which stocks analysts compare it against?

## When to prefer this

Use this endpoint when you need to identify which stocks analysts and data providers consider comparable to a given company — ideal for relative valuation, building peer comparison tables, or finding sector competitors for a specific ticker. Prefer this over manual competitor research when you need a standardized, data-driven peer group.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty or error response
- Ticker not covered by data provider returns no peers
- Missing required query parameter causes 400-level error
- Rate limit exceeded returns 429 error
- Endpoint returns stale or limited peer data for lesser-known stocks

## How this service works

Company peers

## Output

A list of ticker symbols representing companies considered peers or comparables to the queried stock, useful for competitive analysis, relative valuation, and sector research.

## 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-toon-haus-1e9281cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toon.haus](https://www.zero.xyz/host/finance.toon.haus/llms.txt)
