# AgentBridge Chinese Web Proxy

> AgentBridge Chinese Web Proxy is a paid API for AI agents from api.060504.shop, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches any Chinese webpage through a proxy and returns the content as clean markdown or HTML

## Facts

- Endpoint: POST https://api.060504.shop/v1/fetch/dynamic
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbridge-chinese-web-proxy-04725a9e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sC3Dj5sHqDMKvDA9SJ950

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 agentbridge-chinese-web-proxy-04725a9e -d '<json body>'
```

Example prompt: Can you fetch the content of this Chinese webpage — https://www.xinhuanet.com/politics/leaders/2024-01/01/c_1130036000.htm — and give me the full article as clean markdown?

## When to prefer this

Use this endpoint when you need to access and extract content from Chinese-language websites or URLs hosted in China that may be geographically restricted or require a Chinese-region proxy. It is particularly useful when you need clean markdown output from Chinese news sites, e-commerce pages, or government portals without implementing your own proxy infrastructure.

## Known failure modes

- URL is not reachable or returns a non-200 status from the Chinese server
- URL points to a non-Chinese or non-existent domain, resulting in an error or empty response
- Dynamic JavaScript-heavy pages may not render fully, returning incomplete content
- Rate limiting or payment failure returns a 402 or 429 error
- Invalid URL format causes a validation error

## How this service works

AgentBridge provides machine-readable digital capabilities that AI agents can discover, purchase, and consume through standardized APIs and x402 payments. All capabilities fall into exactly two categories, tagged below: 'raw-content' (unverified, machine-fetched, cheap, use when you just need to read a page) and 'verified-analysis' (human-authored, expert-reviewed, priced accordingly, use when you need a decision-grade answer). Check the 'tags' field on each operation to know which category it belongs to before calling it.

## Output

A string containing the fetched webpage content rendered as clean markdown (default) or raw HTML, stripped of scripts and navigation clutter, ready for reading or further processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "The URL of the Chinese webpage to fetch"
  },
  "output_format": {
   "enum": [
    "markdown",
    "html"
   ],
   "type": "string",
   "description": "Output format: markdown (default) or html"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": "# Article Title\n\nClean markdown content extracted from the page...",
  "status": "success",
  "_billing": {
   "cost": 0.003,
   "mode": "static",
   "auth_mode": "x402",
   "balance_after": null
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbridge-chinese-web-proxy-04725a9e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.060504.shop](https://www.zero.xyz/host/api.060504.shop/llms.txt)
