# Orchard Data Macro Dashboard

> Orchard Data Macro Dashboard is a paid API for AI agents from orchard-data.netlify.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns a single-call macro market snapshot covering Treasury yields (13-week, 5-year, 10-year, 30-year), US Dollar Index, gold, WTI crude oil, and VIX volatility index as JSON.

## Facts

- Endpoint: GET https://orchard-data.netlify.app/api/macro
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orchard-data-macro-dashboard-381be2dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-K00r2vMZRrtlUThHT__y

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 orchard-data-macro-dashboard-381be2dd
```

Example prompt: Give me the full macro dashboard right now — I want current Treasury yields across all maturities (13-week, 5-year, 10-year, 30-year), the Dollar Index, gold, WTI crude, and VIX in one shot.

## When to prefer this

Use this endpoint when you need a broad macro market snapshot across rates, commodities, and volatility in a single call rather than querying multiple specialized APIs. It is ideal for risk dashboards, systematic macro monitoring, or pre-trade environment checks where you need yield curve shape, dollar strength, commodity prices, and fear gauge simultaneously. Prefer alternatives if you need intraday tick data, historical time series, or equity-specific metrics not covered here.

## Known failure modes

- Upstream data source unavailable — stale or missing values returned
- Payment not processed or x402 auth failure — 402 response with no data
- Rate limit exceeded — HTTP 429 or payment required again
- Netlify function cold start timeout — intermittent 504 on first call
- Partial data if one underlying feed is down — some fields may be null

## How this service works

Macro dashboard in one call: 13w/5y/10y/30y Treasury yields, dollar index, gold, WTI crude, VIX. JSON.

## Output

A JSON object containing current values for US Treasury yields at four maturities (13w, 5y, 10y, 30y), the US Dollar Index (DXY), gold spot price, WTI crude oil price, and the VIX volatility index — all in a single response.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-macro-dashboard-381be2dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.netlify.app](https://www.zero.xyz/host/orchard-data.netlify.app/llms.txt)
