# TradePulse FTA Analyzer

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

Returns applicable Free Trade Agreements, preferential tariff rates, and rules of origin for a given product and country pair

## Facts

- Endpoint: GET https://tradepulse.theaslangroupllc.com/api/trade/fta
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradepulse-fta-analyzer-036e8b54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O8Bp0BNUlXtFd8iwMeuCM

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-036e8b54
```

Example prompt: Can you check what free trade agreements apply to HS code 8471.30 (laptops) being exported from the US to South Korea, and tell me the preferential tariff rates and rules of origin I'd need to meet to qualify?

## When to prefer this

Use this endpoint when you need to determine FTA eligibility, preferential tariff rates, and rules of origin for a specific product-country pair — particularly for customs agents, trade compliance teams, or import-export advisors looking to reduce duty costs. Prefer this over a general tariff lookup when the goal is specifically to identify FTA benefits and origin qualification requirements rather than just the MFN duty rate.

## Known failure modes

- Invalid or unrecognized HS code returns an error or empty results
- No FTA exists between the specified country pair, returning an empty FTA list
- Ambiguous product description unable to be mapped to a specific HS code
- Unsupported country codes or country pairs not covered by the database
- Payment failure or insufficient USDC balance resulting in 402 response

## 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 for the product-country pair, along with preferential duty rates available under each FTA, specific rules of origin criteria that must be met to claim FTA benefits, and potential duty savings compared to MFN rates.

## 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-036e8b54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tradepulse.theaslangroupllc.com](https://www.zero.xyz/host/tradepulse.theaslangroupllc.com/llms.txt)
