{
  "format": "delx/intent-card/v1",
  "id": "liq-cascade-steps-api",
  "intent": "Liquidation Cascade Steps for an agent workflow",
  "title": "Liquidation Cascade Steps API for agents",
  "description": "Advisory liq price ladder over leverage steps. Call when stressing sequential leverage reductions toward liquidation. Returns steps of approx liq prices as deterministic JSON for $0.001 USDC via x402 on Base. First-party local math only—no RPC, live market feed, API keys, storage, or mediagen. Advisory only; the caller owns capital, risk, and production controls.",
  "keywords": [
    "Liquidation Cascade Steps API",
    "Liquidation Cascade Steps for agents",
    "pay per result API",
    "x402 API",
    "no API key"
  ],
  "updated_at": "2026-08-23",
  "canonical_url": "https://commerce.delx.ai/intents/liq-cascade-steps-api",
  "machine_url": "https://commerce.delx.ai/intents/liq-cascade-steps-api.json",
  "recommendation": {
    "tool_name": "util_liq_cascade_steps",
    "service_name": "Liquidation Cascade Steps",
    "method": "POST",
    "resource": "https://api.delx.ai/api/v1/x402/liq-cascade-steps",
    "price_usdc": "0.001",
    "payment_protocols": [
      "x402",
      "mpp"
    ],
    "input_schema": {
      "type": "object",
      "properties": {
        "entry": {
          "type": "number",
          "description": "Entry price of the position"
        },
        "leverage": {
          "type": "number",
          "description": "Position leverage multiplier"
        },
        "maintenance": {
          "type": "number",
          "description": "Maintenance margin fraction"
        },
        "steps": {
          "type": "integer",
          "description": "Number of cascade steps to emit"
        }
      },
      "required": [
        "entry",
        "leverage",
        "maintenance"
      ],
      "additionalProperties": true
    },
    "example_input": {
      "entry": 100,
      "leverage": 10,
      "maintenance": 0.005,
      "steps": 3
    },
    "example_output": {
      "schema": "delx/util-liq-cascade-steps/v1",
      "steps": [
        {
          "step": 1,
          "leverage": 10,
          "liq_price_long_approx": 90.5
        },
        {
          "step": 2,
          "leverage": 5,
          "liq_price_long_approx": 80.5
        },
        {
          "step": 3,
          "leverage": 3.3333333333333335,
          "liq_price_long_approx": 70.5
        }
      ]
    },
    "agentcash": {
      "buy": "npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/liq-cascade-steps -m POST -H 'x-delx-source: intent-card-liq-cascade-steps-api' --max-amount 0.001 -b '{\"entry\":100,\"leverage\":10,\"maintenance\":0.005,\"steps\":3}'",
      "max_amount_usdc": "0.001"
    }
  },
  "attribution": {
    "header": "x-delx-source",
    "value": "intent-card-liq-cascade-steps-api"
  },
  "evidence": {
    "paid_openapi": "https://api.delx.ai/openapi.x402.json",
    "governed_portfolio": "https://api.delx.ai/x402-portfolio.json",
    "live_contract": "https://api.delx.ai/api/v1/x402/liq-cascade-steps"
  }
}
