# Orchard Data – Commodities Market Data

> Orchard Data – Commodities Market Data is a paid API for AI agents from orchard-data.letom1176.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns latest price data for key commodity markets including gold futures, WTI crude oil futures, and the US dollar index

## Facts

- Endpoint: GET https://orchard-data.letom1176.workers.dev/api/commodities
- Price: $0.002/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-commodities-market-data-c92de481
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m1yWap1u6cHqGYmE_yOEM

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-commodities-market-data-c92de481
```

Example prompt: Can you pull the latest commodity market prices — gold futures, WTI crude, and the dollar index — right now?

## When to prefer this

Choose this endpoint when you need lightweight, per-call commodity price lookups (gold, oil, dollar index) without a subscription, especially in agentic workflows where pay-per-use via x402/USDC on Base is preferred over monthly API keys.

## Known failure modes

- Payment required (402) if x402 USDC payment header is missing or insufficient
- Invalid or unsupported property filter returns empty or error response
- Network timeout from Cloudflare Worker under high load
- Stale data if upstream market data feed is delayed

## How this service works

Market data for AI agents, paid per-call via x402 (USDC on Base). Free index at /, free spec here.

## Output

A JSON object containing an array of commodity entries, each with a 'label' (e.g. 'gold_futures', 'wti_crude_futures', 'dollar_index') and a 'last' field with the most recent price value as a float.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "commodities": [
   {
    "last": 4120.5,
    "label": "gold_futures"
   },
   {
    "last": 61.2,
    "label": "wti_crude_futures"
   },
   {
    "last": 99.1,
    "label": "dollar_index"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-commodities-market-data-c92de481/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.letom1176.workers.dev](https://www.zero.xyz/host/orchard-data.letom1176.workers.dev/llms.txt)
