# TradePulse Incoterms 2020 Decoder

> TradePulse Incoterms 2020 Decoder is a paid API for AI agents from tradepulse-five.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a plain-English explanation of any Incoterm with buyer/seller obligation split, risk transfer point, documentation checklist, insurance guidance, and when-to-use comparison

## Facts

- Endpoint: GET https://tradepulse-five.vercel.app/api/trade/incoterms
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradepulse-incoterms-2020-decoder-d83e05a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S1EJXyboyNDC2FO5zCIhW

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-incoterms-2020-decoder-d83e05a0
```

Example prompt: Can you decode the Incoterm DDP for me — explain what it means in plain English, who's responsible for what between buyer and seller, where risk transfers, what documents are needed, and when I should use it versus other options?

## When to prefer this

Use this endpoint when an agent or user needs to quickly understand the meaning, obligations, and practical implications of a specific Incoterm 2020 rule — especially when they need the buyer/seller split, risk transfer point, and documentation requirements in structured, actionable form. Ideal for trade compliance workflows, contract drafting assistance, freight procurement decisions, and onboarding teams unfamiliar with Incoterms.

## Known failure modes

- Invalid or unrecognized Incoterm code returns an error or empty result
- Misspelled Incoterm abbreviation may not be matched
- Network timeout if the vercel deployment is cold-starting
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Incoterms 2020 decoder for trade and import-export agents. Returns a plain-English explanation of any Incoterm with buyer/seller obligation split, risk transfer point, documentation checklist, and insurance guidance.

## Output

A structured breakdown of the requested Incoterm including: plain-English definition, buyer obligations, seller obligations, the exact point of risk transfer, a documentation checklist, insurance requirements and guidance, and a when-to-use comparison against alternative Incoterms.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string"
      },
      "term": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "to_country": {
       "type": "string"
      },
      "from_country": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "term": "FOB",
  "full_name": "Free on Board",
  "when_NOT_to_use": [
   "Container shipments — use FCA instead (ICC 2020 recommendation)"
  ],
  "buyer_obligations": {
   "pays_for": [
    "Ocean freight",
    "Marine insurance",
    "Import duties"
   ]
  },
  "seller_obligations": {
   "pays_for": [
    "Export customs",
    "Origin port handling to vessel"
   ]
  },
  "risk_transfer_point": "When goods pass ship's rail at named port of origin"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradepulse-incoterms-2020-decoder-d83e05a0/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)
