# China Sourcing Payment Red Flags Checker

> China Sourcing Payment Red Flags Checker is a paid API for AI agents from x402-stable-door.lu7897859.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Analyzes a Chinese supplier payee and deposit ratio to detect payment red flags and return a GO/NO_GO/CAUTION verdict with safe payment rules

## Facts

- Endpoint: POST https://x402-stable-door.lu7897859.workers.dev/payment_red_flags
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/china-sourcing-payment-red-flags-checker-d5578baf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7kK5Ugwn5Xcy2X5kLO80X

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 china-sourcing-payment-red-flags-checker-d5578baf -d '<json body>'
```

Example prompt: Before I wire the 50% deposit to Shenzhen Brightway Electronics Co., can you check for payment red flags — the payee on the contract is Guangzhou Trading Hub Ltd, account number CN8932017654?

## When to prefer this

Use this endpoint specifically when you need a fast, structured GO/NO_GO payment risk verdict for a Chinese supplier before funds move — especially when you suspect payee name vs account holder mismatches, unusually high deposit ratios, or contract party discrepancies. Prefer it over a general supplier audit when the primary concern is the payment step itself rather than factory legitimacy or product certification.

## Known failure modes

- Missing required fields (payee_name or deposit_ratio) returns a validation error
- Deposit ratio outside 0-1 range may produce unreliable scoring
- Ambiguous or very short payee names may yield low-confidence flags
- No network connectivity to the worker returns a 5xx error
- Edge cases with blank contract_party may skip mismatch checks

## How this service works

AI tools for vetting Chinese suppliers and import risk before money moves: factory-vs-trader verification, landed cost, payment red flags, audit checklist, certification checks, full audit chain. Pay-per-call in USDC on Base via x402.

## Output

Returns an array of specific payment red flags detected (e.g. payee mismatch, excessive deposit ratio, unverifiable account), a GO/NO_GO/CAUTION verdict indicating whether it is safe to proceed with payment, and a list of safe payment rules the buyer should follow to protect themselves.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "payee_name",
  "deposit_ratio"
 ],
 "properties": {
  "payee_name": {
   "type": "string"
  },
  "deposit_ratio": {
   "type": "number"
  },
  "payee_account": {
   "type": "string"
  },
  "contract_party": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "flags": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "go_no_go": {
   "enum": [
    "GO",
    "NO_GO",
    "CAUTION"
   ],
   "type": "string"
  },
  "safe_rules": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/china-sourcing-payment-red-flags-checker-d5578baf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stable-door.lu7897859.workers.dev](https://www.zero.xyz/host/x402-stable-door.lu7897859.workers.dev/llms.txt)
