# ADH Processed Baltic Dry Index (BDI) Intelligence Feed

> ADH Processed Baltic Dry Index (BDI) Intelligence 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-14).

Returns a processed, interpreted Baltic Dry Index snapshot with day/month/year percent changes, historical values, and a machine-readable macro interpretation in Chinese.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-bdi
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-processed-baltic-dry-index-bdi-intelligence-feed-26addb93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5R0N2mB81qu1MJzRBwYzh

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 adh-processed-baltic-dry-index-bdi-intelligence-feed-26addb93
```

Example prompt: What's the current Baltic Dry Index — give me the latest BDI value, how much it's moved today and over the past year, and what that means for global trade conditions right now.

## When to prefer this

Choose this endpoint when you need a clean, interpreted Baltic Dry Index reading enriched with percentage-change context and a macro narrative — rather than raw unprocessed freight data. It is ideal for AI agents that need a single call to get both the number and its meaning for global trade analysis, without building their own data pipeline from Trading Economics or similar providers.

## Known failure modes

- Payment not settled via x402 — returns 402 Payment Required
- Upstream Trading Economics data temporarily unavailable — may return stale or error response
- Month-over-month change may be null if insufficient history
- Network timeout if upstream data source is slow to respond

## How this service works

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

## Output

Returns a JSON object containing: the BDI source (Trading Economics), a snapshot with current BDI value and day/month/year percentage changes, a historical time-series array of BDI values with timestamps, a data type label ('freight'), the collection timestamp (UTC ISO-8601), and a Chinese-language macro interpretation explaining what the current BDI level implies for global trade and commodity demand.

## 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": {
  "source": "tradingeconomics",
  "history": [
   {
    "v": 3089,
    "ts": 1786295104
   }
  ],
  "product": "波罗的海干散货指数",
  "snapshot": {
   "bdi": 3089,
   "chg_day_pct": 1.05,
   "chg_year_pct": 50.61,
   "chg_month_pct": null
  },
  "data_type": "freight",
  "collected_at": "2026-08-09T17:05:04Z",
  "interpretation": "波罗的海干散货指数(BDI) 3089 点（日 1.05% / 月 ?% / 年 50.61%）。BDI 是全球贸易与大宗商品运输需求先行指标，上行=贸易活跃、大宗商品需求强。"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-processed-baltic-dry-index-bdi-intelligence-feed-26addb93/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)
