# Losbeto Fear & Greed Index

> Losbeto Fear & Greed Index is a paid API for AI agents from api.losbeto.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the current crypto market Fear & Greed index score and sentiment classification via x402 micropayment

## Facts

- Endpoint: GET https://api.losbeto.xyz/fear-greed
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-fear-greed-index-63f97fdc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EAyzQkzgA5se5wJLOD8Il

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-fear-greed-index-63f97fdc
```

Example prompt: What is the current crypto Fear and Greed index — is the market in fear or greed right now?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call crypto market sentiment reading without a subscription, particularly in agentic workflows on Solana or Base that already use USDC micropayments via x402. Useful for trading bots or portfolio agents that need a sentiment gate before executing trades.

## Known failure modes

- Payment not completed via x402 protocol — returns 402 Payment Required
- API server downtime or rate limiting — returns 5xx error
- Upstream data provider unavailable — may return stale or empty data
- Malformed response if the underlying index source is unreachable

## 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 response containing the current Fear & Greed index numeric score (typically 0–100) and a sentiment label such as 'Extreme Fear', 'Fear', 'Neutral', 'Greed', or 'Extreme Greed', reflecting current crypto market psychology.

## 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": {
      "format": {
       "type": "string",
       "description": "Response format (json)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "description": "Is the crowd greedy or fearful right now? The Fear & Greed Index (0-100) at this exact instant, with classification — a point-in-time reading your model's training data cannot contain. [Wrapper over a free public source (https://api.alternative.me/fng/ (public, free)) — you pay for one schema, one payment rail, signed receipts and monitored uptime.]"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-fear-greed-index-63f97fdc/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)
