# Losbeto Equity Dossier

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

Returns a comprehensive data dossier for a publicly traded equity, including price, sentiment, and macro context, paid per-call via USDC on Base or Solana.

## Facts

- Endpoint: GET https://api.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-4daaf7d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JwVyHBMZ9-oE-qxksRanf

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-4daaf7d9
```

Example prompt: Pull the full equity dossier for AAPL — I need current price consensus, sentiment, and macro context — and pay the per-call fee from my USDC wallet.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-source equity intelligence package in a single call — especially when you want to avoid API key management and prefer pay-per-call micropayments via USDC. Ideal for AI agents that need on-demand stock research without subscription commitments.

## Known failure modes

- Payment not received — returns HTTP 402 if USDC payment on Base or Solana is not successfully completed
- Invalid or unrecognized ticker symbol — may return an error or empty dossier
- Network or upstream data source unavailability — may return partial data or 503
- Unsupported equity — non-US or delisted equities may not be available

## How this service works

OpenAI-compatible LLM gateway at $0.005/call — change base_url, pay in USDC. Plus pay-per-call market data: multi-oracle price consensus, sentiment, forex, equities, commodities, Brazil macro (BCB/B3) and crypto. No API keys, no accounts. USDC on Base, Solana and Algorand via x402.

## Output

A JSON object containing a comprehensive dossier for the requested equity, likely including multi-oracle price consensus, market sentiment consensus, macro indicators, and potentially company fundamentals — all aggregated from multiple data sources into a single structured response.

## 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"
}
```

## More

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