# ADH Brazil Macro Snapshot

> ADH Brazil Macro Snapshot 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 Brazil macroeconomic snapshot including Selic rate, IPCA inflation, and USD/BRL exchange rate with interpreted intelligence from Banco Central do Brasil.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/processed-brazil-macro
- 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-brazil-macro-snapshot-22b07a4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mcZAksuIQAJFcdkJFCPCY

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-brazil-macro-snapshot-22b07a4a
```

Example prompt: Pull the latest Brazil macro snapshot — I need the current Selic rate, IPCA inflation, and USD/BRL exchange rate with an interpretation of what the numbers mean.

## When to prefer this

Choose this endpoint when you need a clean, pre-interpreted Brazil macro snapshot combining BCB's Selic rate, IPCA inflation, and USD/BRL FX in a single call with natural-language interpretation included — rather than scraping BCB directly or assembling raw data from multiple sources. Ideal for agents that need emerging-market macro context injected into decision pipelines without custom data cleaning.

## Known failure modes

- Source data unavailable from BCB — returns stale or empty snapshot
- Network timeout on upstream data fetch — may return cached value with older timestamp
- Invalid or missing payment header (x402) — returns 402 Payment Required
- Endpoint temporarily overloaded — returns 5xx error

## How this service works

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

## Output

A JSON object containing: the data source (Banco Central do Brasil), a product label ('巴西宏观快照'), the snapshot with usdbrl exchange rate, ipca_pct inflation, and selic_pct interest rate, a data_type tag ('emerging_macro'), a UTC collection timestamp, historical value array, and a human-readable interpretation summarizing the macro regime and its implications.

## 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": "巴西央行BCB",
  "history": [
   {
    "v": 14,
    "ts": 1786295108
   }
  ],
  "product": "巴西宏观快照",
  "snapshot": {
   "usdbrl": 5.0908,
   "ipca_pct": 0.16,
   "selic_pct": 14
  },
  "data_type": "emerging_macro",
  "collected_at": "2026-08-09T17:05:08Z",
  "interpretation": "巴西宏观快照：基准利率 Selic 14.00%，通胀 IPCA 0.16%，汇率 USD/BRL 5.0908。新兴市场利率样板（高利率抑制通胀但压增长）。"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-brazil-macro-snapshot-22b07a4a/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)
