# China Industry Data API

> China Industry Data API is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns China's key industrial economic indicators including commodity price index, energy index, agricultural product prices, and industrial production year-over-year growth.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/china/industry
- 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-industry-data-api-2c81f1be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9sbROZp5cFmKPJtt4XvWF

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-industry-data-api-2c81f1be
```

Example prompt: Pull the latest China industry data for me — I need the commodity price index, energy index, agricultural product prices, and industrial production year-over-year figures.

## When to prefer this

Choose this endpoint when you need a focused snapshot of China's industrial and commodity sector data in a single call, without paying for a broader global or multi-country bundle. Ideal for agents tracking China-specific supply chain inputs, commodity exposure, or manufacturing sector trends.

## Known failure modes

- Payment not received or x402 authentication fails — returns 402 Payment Required
- Data source temporarily unavailable — returns 5xx error
- Invalid query parameters — returns 400 Bad Request
- Rate limiting if called too frequently — returns 429 Too Many Requests

## How this service works

🇨🇳 CHINA INDUSTRY DATA — commodity price index, energy index, agricultural products, industrial production YoY. The world's second-largest economy's industrial pulse, one API call away. 💎【付款后立得】实时结构化JSON，即插即用——无需注册，USDC一键支付即取数据。

## Output

A structured data object containing China's latest industrial indicators: commodity price index, energy price index, agricultural product prices, and industrial production year-over-year growth rate.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "energy_index": 98.7,
  "agricultural_index": 102.1,
  "commodity_price_index": 105.3,
  "industrial_production_yoy": 4.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/china-industry-data-api-2c81f1be/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
