# TradePulse Landed Cost Calculator

> TradePulse Landed Cost Calculator 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-14).

Calculates the full landed cost of an import including duty, VAT, freight, and all associated fees for any product and trade lane

## Facts

- Endpoint: GET https://tradepulse.theaslangroupllc.com/api/trade/landed
- 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-landed-cost-calculator-a5b353e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_15FTFLCDZrJF26pDVNVxJ

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-landed-cost-calculator-a5b353e1
```

Example prompt: Can you calculate the full landed cost to import 500 units of wireless headphones (HS code 8518.30) from China to the US, with a product value of $8,000 and estimated freight of $600? I need the duty, VAT, and all fees broken down.

## When to prefer this

Use this endpoint when an agent needs a comprehensive, all-in landed cost estimate for an import — including duty, VAT, freight, and fees — rather than just a tariff rate lookup. Prefer this over the sibling tariff-rate endpoint when the user needs the full financial picture of an import, not just the duty percentage. Best suited for procurement, sourcing, or logistics decision-making where total import cost drives the decision.

## Known failure modes

- Invalid or unrecognized HS code returns an error or empty duty rate
- Unsupported trade lane (origin/destination country pair) returns no results
- Missing required parameters such as product value or country codes returns a 400-level error
- Outdated tariff rates if trade policy has recently changed
- Freight estimate may be unavailable for certain routes, affecting total accuracy

## How this service works

Landed cost calculator for trade and import-export agents. Returns full landed cost including duty, VAT, freight, and fees for any import.

## Output

Returns a full landed cost breakdown including total landed cost, duty amount, VAT or sales tax, freight charges, customs processing fees, and any other applicable import fees — giving the agent a complete cost picture for the import transaction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to_country",
  "from_country"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "value": {
   "type": "string",
   "description": "Declared customs value in USD"
  },
  "hs_code": {
   "type": "string",
   "description": "6-digit HS code as alternative to product"
  },
  "product": {
   "type": "string",
   "description": "Product description or type. Use hs_code instead if known."
  },
  "quantity": {
   "type": "string",
   "description": "Number of units (for per-unit cost calculation)"
  },
  "to_country": {
   "type": "string",
   "description": "Destination country. Also accepts 'to'"
  },
  "from_country": {
   "type": "string",
   "description": "Origin 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-landed-cost-calculator-a5b353e1/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)
