# TradePulse Supplier Country Risk Assessment

> TradePulse Supplier Country Risk Assessment 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-15).

Assesses supplier country risk including UFLPA forced labor exposure, ESG flags, CBP enforcement status, geopolitical risk, and a compliance checklist

## Facts

- Endpoint: GET https://tradepulse-five.vercel.app/api/trade/supplier-risk
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradepulse-supplier-country-risk-assessment-d29c1c96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e0U3FkXEGgfDrYd4wXrTx

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-supplier-country-risk-assessment-d29c1c96
```

Example prompt: Can you run a full supplier risk assessment on my manufacturer in Xinjiang, China — I need to know their UFLPA forced labor exposure, CBP enforcement status, ESG flags, geopolitical risk rating, and a compliance checklist before I finalize the contract?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional risk profile of a supplier's country of origin — specifically covering UFLPA forced labor compliance, CBP enforcement history, ESG standing, and geopolitical exposure — rather than a narrower sanctions-only or tariff-only check. Ideal for supply chain due diligence, vendor onboarding, and import compliance workflows.

## Known failure modes

- Unsupported or unrecognized country code returns 400 error
- Missing required supplier country parameter returns 422 validation error
- Payment not provided or insufficient USDC returns 402 Payment Required
- Rate limiting or quota exceeded returns 429 error
- Data unavailable for obscure or newly sanctioned territories returns partial result or 404

## How this service works

Supplier country risk assessment for supply-chain and compliance agents. Returns UFLPA forced-labor exposure, ESG flags, CBP enforcement status, geopolitical risk, and a compliance checklist.

## Output

Returns a structured risk report including UFLPA forced labor exposure rating, ESG risk flags, CBP enforcement status for the supplier country, geopolitical risk score, and an actionable compliance checklist for import due diligence.

## 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"
      },
      "checks": {
       "type": "string"
      },
      "sector": {
       "type": "string"
      },
      "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": {
  "sector": "textiles",
  "country": "China",
  "forced_labor": {
   "uflpa_status": "HIGH RISK",
   "cbp_enforcement": {
    "detention_risk": "HIGH"
   },
   "xinjiang_exposure": "HIGH"
  },
  "overall_risk_rating": "HIGH",
  "alternative_sourcing": {
   "lower_risk_countries": [
    "Vietnam",
    "Bangladesh",
    "Turkey"
   ]
  },
  "compliance_checklist": [
   {
    "item": "UFLPA supply chain mapping",
    "urgency": "IMMEDIATE"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradepulse-supplier-country-risk-assessment-d29c1c96/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)
