# TradePulse Landed Cost Calculator

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

Calculates the full landed cost of an imported product including duties, VAT, freight charges, and all associated fees

## Facts

- Endpoint: GET https://tradepulse-five.vercel.app/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-81c19974
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UDot4VQAu7bmpTqcqhHWS

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-81c19974
```

Example prompt: What's the full landed cost to import 500 units of wireless earbuds (HS code 8518.30) from China to Germany, with a declared value of $8,000 and estimated freight of $400 — break down the duty, VAT, and any other fees?

## When to prefer this

Use this endpoint when you need a comprehensive, all-in cost estimate for an import shipment — not just the tariff rate, but the complete landed cost including VAT, freight, and ancillary fees. Prefer this over the tariff-only endpoint when budgeting, pricing, or sourcing decisions require total cost visibility. Best when you already have an HS code; otherwise pair with the HS classification endpoint first.

## Known failure modes

- Invalid or unrecognized HS code returns an error or zero duty
- Unsupported country pair returns a 404 or empty result
- Missing required parameters (origin, destination, value) returns a 400 bad request
- Rate data not available for the trade lane returns a partial or null response
- Malformed product value or quantity causes computation failure

## 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

A detailed breakdown of all cost components comprising the landed cost: import duty amount, VAT/GST, freight charges, customs handling fees, and the total all-in landed cost figure for the shipment.

## 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-81c19974/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)
