# TradePulse Supplier Country Risk Assessment

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

Returns UFLPA forced-labor exposure, ESG flags, CBP enforcement status, geopolitical risk score, and a compliance checklist for a given supplier country.

## Facts

- Endpoint: GET https://tradepulse.theaslangroupllc.com/api/trade/supplier-risk
- 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-supplier-country-risk-assessment-726deb86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rt03wIF23C7lE_KbwTNH5

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-726deb86
```

Example prompt: Can you run a supplier country risk assessment on our new textile manufacturer based in Xinjiang, China — I need to know their UFLPA forced-labor exposure, any ESG red flags, CBP enforcement status, and a compliance checklist before we finalize the contract?

## When to prefer this

Use this endpoint when you need a multi-dimensional country-level risk profile specifically combining UFLPA forced-labor exposure, ESG flags, CBP enforcement posture, and geopolitical risk in a single call — especially for supply chain due diligence, import compliance review, or onboarding a new foreign supplier. Prefer this over sanctions screening (which focuses on entity-level OFAC/EU lists) or tariff lookups (which focus on duty rates).

## Known failure modes

- Unknown or unsupported country code returns a 404 or empty result
- Ambiguous supplier country input may return a generic country-level assessment rather than supplier-specific data
- Stale enforcement data if CBP or UFLPA lists have not been recently updated
- Missing sector context may reduce specificity of ESG and forced-labor flags
- Payment failure (402) if USDC balance is insufficient for the $0.15 call fee

## 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 report including UFLPA forced-labor exposure rating, ESG risk flags, CBP enforcement status for goods from that country, a geopolitical risk score, and an actionable compliance checklist for procurement or compliance teams.

## 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-726deb86/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)
