# TradePulse FTA Analyzer

> TradePulse FTA Analyzer is a paid API for AI agents from tradepulse-five.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Identifies applicable Free Trade Agreements between countries for a given product and returns preferential tariff rates and rules of origin requirements

## Facts

- Endpoint: GET https://tradepulse-five.vercel.app/api/trade/fta
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradepulse-fta-analyzer-72d440a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TeMgFdQYitde0JsgDwa_q

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-fta-analyzer-72d440a1
```

Example prompt: Can you check which free trade agreements apply to importing solar panels (HS code 8541.40) from Vietnam into the European Union, and what preferential duty rates and rules of origin requirements I'd need to meet?

## When to prefer this

Use this endpoint when you need to determine whether a specific trade lane qualifies for reduced tariffs under a Free Trade Agreement, and what rules of origin must be met to claim those benefits. Prefer this over the general tariff rates endpoint when FTA preferential rates and origin compliance are the primary concern rather than MFN rates.

## Known failure modes

- Invalid or unrecognized HS code returns an error or empty FTA list
- Country pair not covered by any FTA returns empty results with no preferential rates
- Ambiguous product description without HS code may yield inaccurate FTA matches
- Unsupported country combinations may return partial or no data
- Rate limiting or payment failure (x402) blocks the request

## How this service works

Free Trade Agreement analyzer for trade and customs agents. Returns applicable FTAs, preferential rates, and rules of origin for a product and country pair.

## Output

Returns a list of applicable Free Trade Agreements between the specified country pair for the given HS code, including preferential tariff rates under each FTA, rules of origin requirements that must be satisfied to claim the preferential rate, and eligibility criteria for each agreement.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to_country",
  "from_country"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "hs_code": {
   "type": "string",
   "description": "6-digit HS code for product-specific rate lookup"
  },
  "product": {
   "type": "string",
   "description": "Product description for additional context"
  },
  "to_country": {
   "type": "string",
   "description": "Importing country. Also accepts 'to'"
  },
  "from_country": {
   "type": "string",
   "description": "Exporting country. Also accepts 'from'"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradepulse-fta-analyzer-72d440a1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tradepulse-five.vercel.app](https://www.zero.xyz/host/tradepulse-five.vercel.app/llms.txt)
