# Vedetta Macro Analyst Read

> Vedetta Macro Analyst Read is a paid API for AI agents from vedetta.dethboy.com, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Returns a live analyst verdict on a macro instrument (indices, rates, commodities) including sentiment, dominant narrative, and divergence vs price.

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/macro
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vedetta-macro-analyst-read-8504fc59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UbXKRqLkYmfPWzdPEwX6Z

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 vedetta-macro-analyst-read-8504fc59
```

Example prompt: What's Vedetta's current macro analyst read on gold — is sentiment aligned with price or is there a divergence worth paying attention to?

## When to prefer this

Choose this endpoint when you need a qualitative, analyst-style interpretation of macro instruments rather than raw price data. It is the right choice when you want to understand the narrative and sentiment behind an index, rate, or commodity move — especially when assessing whether sentiment and price are converging or diverging. Prefer this over raw data feeds when the goal is contextual understanding, not just numbers.

## Known failure modes

- Unsupported asset symbol returns an error — only SPX, VIX, US10Y, US2Y, GOLD, OIL, BRENT are valid
- Missing required 'asset' query parameter returns a validation error
- Payment failure or insufficient USDC balance (x402 protocol) prevents response
- Service unavailability or upstream data gaps may return a degraded or empty verdict
- Rate limiting may apply under high call volume

## How this service works

Live analyst read on a MACRO instrument — indices, rates, commodities (?asset=SPX, VIX, US10Y, US2Y, GOLD, OIL, BRENT): sentiment, dominant narrative and divergence vs price. An analyst verdict on macro, not a raw data dashboard. Descriptive research, not financial advice.

## Output

An analyst-style qualitative verdict for the requested macro instrument, including: current sentiment direction (bullish/bearish/neutral), the dominant market narrative driving that sentiment, and a divergence assessment comparing sentiment positioning to actual price behavior. This is descriptive research output, not raw data or financial advice.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "asset"
     ],
     "properties": {
      "asset": {
       "type": "string",
       "description": "Macro instrument: SPX, VIX, US10Y, US2Y, GOLD, OIL, BRENT"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string"
      },
      "stance": {
       "type": "string"
      },
      "quality": {
       "type": "string"
      },
      "narrative": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "divergence": {
       "type": "boolean"
      },
      "price_quoted": {
       "type": "number"
      },
      "sentiment_pct": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "SPX",
  "stance": "bullish",
  "quality": "structured",
  "narrative": "Quiet compounding into the FOMC window.",
  "disclaimer": "Descriptive market intelligence, not financial advice.",
  "divergence": false,
  "price_quoted": 6110,
  "sentiment_pct": 62
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-macro-analyst-read-8504fc59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vedetta.dethboy.com](https://www.zero.xyz/host/vedetta.dethboy.com/llms.txt)
