# Octodamus DEX Order Chainflow

> Octodamus DEX Order Chainflow is a paid API for AI agents from api.octodamus.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Retrieves on-chain DEX order flow and chainflow analytics for a specified blockchain network

## Facts

- Endpoint: GET https://api.octodamus.com/v2/order_chainflow/dex
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octodamus-dex-order-chainflow-86f59f4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qubdp6I-pZf87iU6kD42F

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 octodamus-dex-order-chainflow-86f59f4e
```

Example prompt: Pull the latest DEX order chainflow data for Ethereum from Octodamus so I can see what on-chain trading activity looks like right now.

## When to prefer this

Use this endpoint when you need real-time on-chain DEX order flow and chainflow signals for a specific blockchain network. Prefer this over centralized exchange APIs when the focus is decentralized trading activity and on-chain analytics.

## Known failure modes

- Missing or invalid chain parameter returns empty or error response
- Unsupported chain identifier results in no data
- Rate limit exceeded (500 req/day free tier) returns 429 error
- Payment not processed (x402 protocol) returns 402 Payment Required
- Network timeout for real-time data fetch

## How this service works

Octodamus Order ChainFlow DEX -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/order_chainflow/dex/preview

## Output

Returns on-chain DEX order flow and chainflow analytics for the specified blockchain, potentially including trade volumes, order direction signals, and related on-chain market activity metrics.

## Example request

```json
{
 "chain": "ethereum"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "type": "string",
     "const": "GET"
    },
    "headers": {
     "type": "object",
     "required": [
      "PAYMENT-SIGNATURE"
     ],
     "properties": {
      "PAYMENT-SIGNATURE": {
       "type": "string",
       "description": "x402 EIP-3009 USDC payment signature (Base mainnet)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "action": {
     "enum": [
      "BUY",
      "SELL",
      "HOLD"
     ],
     "type": "string"
    },
    "signal": {
     "enum": [
      "BULLISH",
      "BEARISH",
      "NEUTRAL"
     ],
     "type": "string"
    },
    "btc_trend": {
     "enum": [
      "UP",
      "DOWN",
      "SIDEWAYS"
     ],
     "type": "string"
    },
    "reasoning": {
     "type": "string"
    },
    "confidence": {
     "type": "number",
     "maximum": 1,
     "minimum": 0
    },
    "fear_greed": {
     "type": "number",
     "maximum": 100,
     "minimum": 0
    },
    "polymarket_edge": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/octodamus-dex-order-chainflow-86f59f4e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.octodamus.com](https://www.zero.xyz/host/api.octodamus.com/llms.txt)
