# TradePulse Tariff Rate Lookup

> TradePulse Tariff Rate Lookup is a paid API for AI agents from tradepulse.theaslangroupllc.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-13).

Returns applicable tariff rates for a given HS code between any two countries for trade and customs use.

## Facts

- Endpoint: GET https://tradepulse.theaslangroupllc.com/api/trade/tariff
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradepulse-tariff-rate-lookup-76cb118c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IdoY4lQandjkxKISkuB7Q

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-tariff-rate-lookup-76cb118c
```

Example prompt: What's the tariff rate for HS code 8471.30 (laptops) being imported from China into the United States?

## When to prefer this

Use this endpoint when you need to look up the specific tariff or duty rate for a known HS code on a bilateral trade lane. Ideal for customs agents, import/export compliance workflows, or cost-estimation pipelines where the HS code is already known. Prefer the sibling HS classification endpoint first if the HS code is not yet determined.

## Known failure modes

- Invalid or unrecognized HS code returns an error or no results
- Unsupported country pair may return no data
- Ambiguous HS code (too short or too long) may cause lookup failure
- Network timeout or API unavailability returns a service error
- Missing required parameters (HS code, origin, destination) returns a validation error

## How this service works

Tariff rate lookup for trade and customs agents. Returns tariff rates for an HS code between any two countries.

## Output

Returns the applicable tariff rate(s) for the specified HS code on the trade lane between the given origin and destination countries, including duty percentages and relevant tariff schedule details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "hs_code",
  "to_country",
  "from_country"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "hs_code": {
   "type": "string",
   "description": "6-digit HS code — e.g. 847130, 610910, 090111"
  },
  "to_country": {
   "type": "string",
   "description": "Importing country — e.g. USA, Japan, Germany, Australia. Also accepts 'to'"
  },
  "from_country": {
   "type": "string",
   "description": "Exporting country — e.g. China, Vietnam, Germany, Mexico. Also accepts 'from'"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradepulse-tariff-rate-lookup-76cb118c/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)
