# Losbeto Equity Dossier

> Losbeto Equity Dossier is a paid API for AI agents from markets.losbeto.xyz, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns a combined equity dossier for a stock ticker including real-time quote, earnings estimates, and an AI synthesis verdict, paid per-call via x402 USDC micropayment.

## Facts

- Endpoint: GET https://markets.losbeto.xyz/equity-dossier
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-equity-dossier-ecf4ab45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kjYIW5cSPB3ESCFNOI-EN

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 losbeto-equity-dossier-ecf4ab45
```

Example prompt: Pull me the full equity dossier for AAPL — I want the current price, EPS estimate, whisper EPS, next earnings date, and whatever AI verdict Losbeto has on it.

## When to prefer this

Choose this endpoint when you need a combined equity snapshot — real-time quote plus earnings estimates — in a single x402 micropayment call, especially when building AI trading agents that require both price and earnings context together. Prefer it over separate quote and earnings APIs when cost per call ($0.15 USDC) is acceptable and you want a pre-synthesized AI verdict alongside raw data. Less suitable if you need strictly live, production-grade earnings figures (the endpoint notes that real figures require a paid upstream key).

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty data
- Earnings data marked as illustrative if no live Alpha Vantage/Finnhub key is configured
- AI verdict may return 'unavailable' if synthesis service is down
- Payment failure via x402 blocks the response with a 402 status
- Rate limiting or upstream Yahoo Finance outage may cause stale or missing quote data

## How this service works

Losbeto: 67 endpoints x402 monetizados. Solana + Base. USDC micropayments para AI agents. Preços a partir de $0.003.

## Output

A JSON object containing a timestamp, a real-time quote block (price, change percentage, previous close, exchange, currency, source), an earnings block (EPS estimate, whisper EPS, next earnings date, revenue estimate in billions, surprise factor, and a note on data quality), an AI verdict string synthesizing the above, product version, and a research disclaimer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Asset ticker, e.g. AAPL, TSLA, BTC, GOLD"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "description": "Full AI dossier on any stock (?symbol=AAPL): live quote + earnings + macro context + analyst verdict with levels. The canonical agentic 'financial report', as a product."
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ts": 1785019169,
  "quote": {
   "ts": 1785019169,
   "price": 333.02,
   "source": "Yahoo Finance",
   "symbol": "AAPL",
   "version": "25.1.0-DISCOVERY",
   "currency": "USD",
   "exchange": "NMS",
   "provider": "Losbeto/Equities",
   "change_pct": 3.53,
   "previous_close": 321.66
  },
  "symbol": "AAPL",
  "product": "Equity Dossier",
  "version": "25.1.0-DISCOVERY",
  "earnings": {
   "ts": 1785019169,
   "note": "Illustrative earnings estimates — not live data. A production Alpha Vantage/Finnhub key is required for real figures. Priced accordingly ($0.08).",
   "status": "illustrative",
   "symbol": "AAPL",
   "version": "25.1.0-DISCOVERY",
   "provider": "Losbeto/Earnings",
   "whisper_eps": 1.52,
   "eps_estimate": 1.45,
   "next_earnings": "2026-07-28",
   "surprise_factor": "+4.8%",
   "revenue_estimate_b": 92.5
  },
  "provider": "Losbeto/Premium",
  "ai_verdict": "AI synthesis unavailable — raw components above.",
  "disclaimer": "Research, not financial advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-equity-dossier-ecf4ab45/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from markets.losbeto.xyz](https://www.zero.xyz/host/markets.losbeto.xyz/llms.txt)
