# China Sourcing Certification Check

> China Sourcing Certification Check 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).

Returns required certifications and verification steps for a given product type in a target market (EU or US) to ensure import compliance when sourcing from China.

## Facts

- Endpoint: POST https://x402-stable-door.lu7897859.workers.dev/certification_check
- 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-certification-check-916d94af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XxSYpaQbyLCOVErxsASd7

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-certification-check-916d94af -d '<json body>'
```

Example prompt: What certifications do I need to import USB chargers from China into the US market? I want to know exactly which compliance docs to ask my supplier for before I send any payment.

## When to prefer this

Use this endpoint when you need a fast, structured lookup of which certifications a specific product type requires for either the EU or US market, particularly during supplier vetting before payment. Prefer this over general web search when you need actionable, structured verification steps rather than raw regulatory documentation. Best suited for pre-payment due diligence workflows where compliance verification is a gate before funds are released.

## Known failure modes

- Missing required fields (market or product_type) returns a validation error
- Unsupported market value (anything other than 'EU' or 'US') is rejected
- Vague or unrecognizable product_type may return generic or incomplete certification lists
- Payment failure or insufficient USDC balance blocks the call
- Upstream AI inference timeout may cause delayed or empty responses

## 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 required certification names (e.g. CE, FCC, CPSC) relevant to the product type and target market, plus a step-by-step verification checklist to confirm those certifications are genuine before transacting with the supplier.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "market",
  "product_type"
 ],
 "properties": {
  "market": {
   "enum": [
    "EU",
    "US"
   ],
   "type": "string"
  },
  "product_type": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required_certs": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "verification_steps": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/china-sourcing-certification-check-916d94af/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)
