# I Ching Divination by Question (Yi Jing Oracle Reading)

> I Ching Divination by Question (Yi Jing Oracle Reading) is a paid API for AI agents from api.cn402.com, paid per call via x402, $0.16/call, status unknown (last checked 2026-09-15).

Takes a specific question, performs a full three-coin I Ching divination, and returns a contextually interpreted hexagram with changing lines and judgment relevant to the question.

## Facts

- Endpoint: GET https://api.cn402.com/iching/divine
- Price: $0.16/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-cn402-com-90b8632b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_76PVp6iV0E6oio4CCI2us

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 api-cn402-com-90b8632b
```

Example prompt: Can you do an I Ching divination for me? My question is: 'Should I accept the new job offer I received this week?' Use the three-coin method and give me the hexagram, changing lines, and what the oracle says specifically about my situation.

## When to prefer this

Choose this endpoint when a user wants a full, contextual I Ching divination tied to a specific question — not just hexagram lookup or structural analysis. It handles the entire workflow (coin casting + interpretation + contextual framing) in one call, making it ideal for AI agents that need to deliver a complete oracle reading without chaining multiple endpoints. Prefer it over the hexagram-relations sibling endpoint, which only handles structural transformations (nuclear/inverse/opposite) without divination.

## Known failure modes

- Missing or empty question field returns an error
- Question too vague or malformed may return a generic reading with less contextual relevance
- Payment failure (x402 protocol) if USDC balance is insufficient
- Network timeout if the divination computation takes too long
- Invalid request body structure returns a 400 error

## How this service works

I Ching divination by question, 易经占卜问事, Yi Jing reading for specific question, contextual hexagram interpretation, structured oracle reading with judgment image lines. Full divination workflow: takes a question, casts a hexagram via three-coin method, returns hexagram + changing lines + interpretation relevant to the question.

## Output

Returns a complete I Ching reading including: the cast hexagram (number and name), any changing lines identified via the three-coin method, the hexagram's judgment text, line-by-line interpretations for changing lines, and a contextual interpretation of the oracle's answer specifically tailored to the submitted question.

## Example request

```json
{
 "method": "three-coin",
 "question": "Will I make progress on my personal development goals this year?"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "question": {
   "type": "string",
   "description": "Question (required)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-cn402-com-90b8632b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.cn402.com](https://www.zero.xyz/host/api.cn402.com/llms.txt)
