# TradePulse US Trade Flow & Tariff Signal

> TradePulse US Trade Flow & Tariff Signal is a paid API for AI agents from trade.lonestaroracle.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns latest US import/export volumes, year-over-year trends, top-5 source countries, and tariff exposure for a specified commodity category

## Facts

- Endpoint: GET https://trade.lonestaroracle.xyz/trade
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradepulse-us-trade-flow-tariff-signal-e995a0ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ts7R4jGNDRZbI89qHmAh-

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-us-trade-flow-tariff-signal-e995a0ee
```

Example prompt: Pull the latest US trade signal for steel — I want to see monthly import and export volumes, year-over-year trend, which countries we're most dependent on, and what the tariff situation looks like.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call macro trade signal for a specific commodity — especially for gauging US supply chain dependence, tracking reshoring/decoupling trends, or assessing tariff burden by sector. Prefer this over general economic APIs when you need both trade flow data and tariff classification in a single call for common commodity categories like steel, electronics, vehicles, pharma, chemicals, oil, or grain.

## Known failure modes

- Unknown or unsupported commodity category returns no data or error
- Payment not processed (x402 payment required — 0.05 USDC on Base)
- Data lag: US Census data may be 1-2 months behind current date
- Ambiguous category string may match wrong commodity bucket
- Rate limiting or service unavailability for the hosted endpoint

## How this service works

US trade-flow + tariff signal by commodity

## Output

Returns a structured trade signal for the requested commodity including: latest monthly US import and export dollar values, year-over-year percentage change for both, the top-5 source countries with their import share percentages and a single-country concentration metric, and the US tariff profile for that category (duty-free share vs dutiable rate range).

## 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-us-trade-flow-tariff-signal-e995a0ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trade.lonestaroracle.xyz](https://www.zero.xyz/host/trade.lonestaroracle.xyz/llms.txt)
