# TradePulse

> TradePulse is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns US trade-flow metrics and tariff exposure signals for a specified commodity category, including monthly import/export volumes, YoY trends, top source countries, and duty rates

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_trade_lonestaroracle_xyz
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradepulse-028a9a42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wBgLE11IquIpEeP2nr4nT

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 tradepulse-028a9a42
```

Example prompt: Pull me the TradePulse trade signal for the steel category — I want to see current US import volumes, year-over-year trend, top source countries, and tariff exposure.

## When to prefer this

Choose TradePulse when you need structured, ready-to-use US trade flow and tariff data for a specific commodity without scraping government databases yourself. It is ideal for supply chain risk agents, macro research workflows, procurement tools, and investment analysis pipelines that need per-category import/export volumes, source-country concentration, and tariff burden in a single low-cost call. Prefer it over generic web search when you need numeric data (dollar values, YoY percentages, duty rates) rather than news or commentary.

## Known failure modes

- Unknown or unsupported commodity category returns an error or empty result
- Payment failure via x402 (insufficient USDC balance or Base network issue) blocks the request
- Stale data if US Census or USITC upstream data is delayed
- Category string typo or unsupported variant returns no match
- Rate limiting or network timeout on the API host

## How this service works

US trade-flow + tariff signal by commodity

## Output

A structured signal object containing: the commodity category, latest monthly US import value in USD, latest monthly US export value in USD, year-over-year percentage change on both imports and exports, top-5 source countries with individual import share percentages and a single-country concentration metric, and US tariff exposure details including duty-free vs dutiable classification and applicable duty rate range. Also includes a human-readable summary signal string.

## Request schema (JSON Schema)

```json
{
 "name": "TradePulse",
 "tags": [
  "trade",
  "tariffs",
  "supply-chain",
  "macro",
  "commodities",
  "imports",
  "customs"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "trading",
 "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",
     "properties": {
      "category": {
       "type": "string",
       "title": "Category"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "signal": "US steel imports $2.1B/mo (-11.9% YoY), top source Canada (17.6%); tariffs mostly duty-free",
     "category": "steel",
     "us_imports_usd": 2123437407,
     "import_concentration_top1_pct": 17.6
    }
   }
  }
 },
 "description": "US international trade + tariff signal for a commodity category (steel, electronics, vehicles, pharma, chemicals, oil, grain, etc.). For a given commodity, returns: latest monthly US imports and exports ($), year-over-year trend on both, the top-5 source countries with import share and single-country concentration, and US tariff exposure for that category (duty-free vs dutiable rate range). Use it to gauge supply dependence, reshoring/decoupling shifts, and tariff burden by sector — a companion to supply-chain-stress data. Pay-per-call $0.05 in USDC on Base via x402. Data = US Census International Trade + USITC HTS, US government public domain."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradepulse-028a9a42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
