# Orchard Data Market Brief

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

Returns a one-call market snapshot including BTC/ETH/SOL spot prices with 24h change, the crypto fear & greed index, and SPY/QQQ/DIA/IWM ETF quotes.

## Facts

- Endpoint: GET https://orchard-data.netlify.app/api/market-brief
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orchard-data-market-brief-3b9a6255
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nLX6WWdkenzRoQCFgDjvs

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-market-brief-3b9a6255
```

Example prompt: Can you pull the current market brief — give me BTC, ETH, and SOL spot prices with their 24-hour changes, the crypto fear and greed index, and today's quotes for SPY, QQQ, DIA, and IWM?

## When to prefer this

Use this endpoint when you need a quick, unified cross-asset snapshot combining crypto spot prices, crypto market sentiment, and major US equity ETF quotes in a single call — avoiding the need to hit multiple separate data providers. It is ideal for dashboards, morning briefings, or agent workflows that need a fast market context without per-symbol query overhead.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required returned
- Upstream price feed or sentiment index provider is down — stale or missing data
- Rate limit exceeded — too many requests in a short window
- Network or Netlify function timeout — 503 or 504 error

## How this service works

One-call market snapshot: BTC/ETH/SOL spot + 24h change, crypto fear & greed index, and SPY/QQQ/DIA/IWM quotes. JSON.

## Output

A JSON object containing spot prices for BTC, ETH, and SOL along with their 24-hour percentage changes, the current crypto fear & greed index value and sentiment label, and real-time quotes for SPY, QQQ, DIA, and IWM ETFs.

## 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-market-brief-3b9a6255/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)
