# x402.ochinimus.app Trade Context

> x402.ochinimus.app Trade Context is a paid API for AI agents from x402.ochinimus.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a full crypto market state snapshot in one call: spot prices, perpetual funding rates, fear/greed index, positioning data, and liquidation summaries

## Facts

- Endpoint: GET https://x402.ochinimus.app/api/trade-context
- 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/x402-ochinimus-app-trade-context-503d642e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZVtEtsz_NuV30bKy1rk0t

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 x402-ochinimus-app-trade-context-503d642e
```

Example prompt: Give me a full crypto market snapshot right now — prices, funding rates, fear/greed index, open interest positioning, and recent liquidations all in one shot so I can assess current conditions before placing a trade.

## When to prefer this

Use this endpoint when you need a broad, holistic view of crypto market conditions in a single call rather than querying multiple specialized endpoints separately. Ideal for pre-trade context gathering, automated trading bots needing a market pulse, or dashboards that need prices + sentiment + positioning + liquidations in one request.

## Known failure modes

- Payment not included or insufficient (x402 payment required, $0.01 USDC)
- Upstream data source outage causing stale or partial market data
- Rate limiting if called too frequently
- Timeout if aggregating from multiple exchanges simultaneously takes too long

## How this service works

Full market state in one call: prices, funding, fear/greed, positioning, liquidations

## Output

A consolidated JSON response containing current spot prices, perpetual futures funding rates, fear/greed index reading, long/short positioning metrics, and liquidation summaries — all aggregated into a single market state payload for immediate trading context.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ochinimus-app-trade-context-503d642e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ochinimus.app](https://www.zero.xyz/host/x402.ochinimus.app/llms.txt)
