# Losbeto Earnings Whisper

> Losbeto Earnings Whisper is a paid API for AI agents from markets.losbeto.xyz, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Fetches earnings whisper numbers or analyst earnings estimates for stocks via a pay-per-call x402-monetized endpoint.

## Facts

- Endpoint: GET https://markets.losbeto.xyz/earnings-whisper
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-earnings-whisper-5bd57ea3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EmltrupcCw6VryXQubQuZ

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-earnings-whisper-5bd57ea3
```

Example prompt: What's the earnings whisper number for NVIDIA ahead of its next earnings report?

## When to prefer this

Use this endpoint when you need whisper-level earnings estimates or pre-earnings analyst sentiment for individual stocks, particularly when building trading workflows that require per-call micropayments via USDC on Solana or Base. It is well-suited for AI agent pipelines that consume financial data on demand without a subscription.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Payment not completed via x402 returns HTTP 402 with payment instructions
- Earnings data not yet available for a future quarter returns null or empty fields
- Network timeout if the upstream data provider is slow
- Rate limiting if too many calls are made in rapid succession

## How this service works

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

## Output

Returns a JSON object containing the earnings whisper number or analyst EPS estimate for the requested stock ticker, likely including the whisper EPS figure, consensus estimate, and related earnings metadata for the current or upcoming quarter.

## 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": "Next earnings date, EPS/revenue estimates and whisper number for a given stock (?symbol=AAPL)."
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-earnings-whisper-5bd57ea3/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)
