# NordAPI Commodities Price Feed

> NordAPI Commodities Price Feed is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time spot prices for major commodities including WTI crude oil, gold, and copper via NordAPI, no API key required.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/commodities
- 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/nordapi-commodities-price-feed-0500ab61
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6nMXDLYo2HZUm5JXONz9u

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 nordapi-commodities-price-feed-0500ab61
```

Example prompt: Can you check the current spot prices for WTI crude oil and gold right now? I want the latest market data without needing to sign up anywhere.

## When to prefer this

Choose this endpoint when you need real-time commodity prices (oil, gold, copper) with no API key or registration overhead, at a low per-call cost of $0.01 USDC. Ideal for agents that need commodity data on-demand without managing credentials. Prefer alternatives if you need extensive historical data, a wide variety of commodities beyond the NordAPI catalog, or bulk/batch pricing.

## Known failure modes

- Payment not included or invalid x402 payment — returns 402 Payment Required
- Upstream NordAPI data unavailable — returns 5xx error
- Rate limiting or temporary server outage — returns 503
- Malformed request headers — returns 400 Bad Request

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

Returns a JSON object containing current spot prices for major commodities (e.g. WTI crude oil, gold, copper) including price values, currency units, and likely a timestamp — sourced from NordAPI with no registration or API key required.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "data": [
    {
     "date": "2026-08-09",
     "name": "Copper (Pound)",
     "unit": "pound",
     "stale": false,
     "source": "reference",
     "commodity": "copper",
     "drift_pct": null,
     "price_usd": 6.45
    },
    {
     "date": "2026-08-09",
     "name": "Copper (Pound)",
     "unit": "pound",
     "stale": false,
     "source": "reference",
     "commodity": "copper",
     "drift_pct": null,
     "price_usd": 6.45
    }
   ],
   "count": 8,
   "success": true
  },
  "source": "generic_json",
  "data_type": "大宗商品",
  "collected_at": "2026-08-09T18:14:01Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nordapi-commodities-price-feed-0500ab61/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
