mirrored listing x402 eip155:8453

APEX Runner: Optimal Order Routing Signal

APEX Runner: Optimal Order Routing Signal

Do you run apexrunner.ai? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
7000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-09
updated

Provider

apexrunner.ai · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x8D0663BBb967ebF1c047405A888DDf865f3E8854",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "7000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "category": "execution",
    "description": "Recommends best exchange and order type for minimum cost execution. Compares fees, spread, and liquidity across Kraken, Coinbase, and Hyperliquid for BTC, ETH, SOL, AVAX. Returns ranked venue list with estimated all-in cost per venue.",
    "example": {
      "estimated_fee_pct": 0.02,
      "estimated_total_cost_pct": 0.14,
      "order_type": "limit",
      "reason": "Lowest fee and tightest spread for BTC at current size",
      "recommended_exchange": "hyperliquid",
      "venue_ranking": [
        {
          "exchange": "hyperliquid",
          "total_cost_pct": 0.14
        },
        {
          "exchange": "kraken",
          "total_cost_pct": 0.21
        }
      ]
    },
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "coin": "BTC",
          "side": "buy",
          "size_usd": 1000
        },
        "type": "http"
      },
      "output": {
        "estimated_fee_pct": "float — exchange fee as percentage of order value",
        "estimated_total_cost_pct": "float — fee + slippage as percentage of order value",
        "example": {
          "estimated_total_cost_pct": 0.14,
          "order_type": "limit",
          "recommended_exchange": "hyperliquid"
        },
        "order_type": "string — recommended order type: limit or market",
        "reason": "string — plain-English explanation of routing decision",
        "recommended_exchange": "string — cheapest venue: kraken / coinbase / hyperliquid",
        "type": "json",
        "venue_ranking": "array — all venues ranked by total cost, each with exchange and total_cost_pct"
      }
    },
    "name": "APEX Optimal Order Routing",
    "outputSchema": {
      "estimated_fee_pct": "float",
      "estimated_total_cost_pct": "float",
      "order_type": "string",
      "reason": "string",
      "recommended_exchange": "string",
      "venue_ranking": "array"
    },
    "schema": {
      "properties": {
        "input": {
          "properties": {
            "queryParams": {
              "properties": {
                "coin": {
                  "default": "BTC",
                  "enum": [
                    "AVAX",
                    "BTC",
                    "ETH",
                    "LINK",
                    "SOL",
                    "XRP"
                  ],
                  "type": "string"
                },
                "side": {
                  "default": "buy",
                  "enum": [
                    "buy",
                    "sell"
                  ],
                  "type": "string"
                },
                "size_usd": {
                  "default": 1000,
                  "maximum": 1000000,
                  "minimum": 10,
                  "type": "number"
                }
              },
              "type": "object"
            }
          },
          "required": [
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "_apex": {
                  "properties": {
                    "evolution_runs": {
                      "type": "integer"
                    },
                    "instance": {
                      "type": "string"
                    },
                    "live_capital_deployed": {
                      "type": "boolean"
                    },
                    "live_trading": {
                      "type": "boolean"
                    },
                    "signal": {
                      "type": "string"
                    },
                    "signal_hash": {
                      "type": "string"
                    },
                    "source": {
                      "type": "string"
                    },
                    "trades_backing_signal": {
                      "type": "integer"
                    },
                    "verify_at": {
                      "type": "string"
                    },
                    "version": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "coin": {
                  "type": "string"
                },
                "exchanges": {
                  "additionalProperties": {
                    "properties": {
                      "fee_usd": {
                        "type": "number"
                      },
                      "net_cost_usd": {
                        "type": "number"
                      },
                      "price": {
                        "type": "integer"
                      },
                      "taker_fee_pct": {
                        "type": "number"
                      }
                    },
                    "type": "object"
                  },
                  "type": "object"
                },
                "reason": {
                  "type": "string"
                },
                "recommended_exchange": {
                  "type": "string"
                },
                "savings_pct": {
                  "type": "number"
                },
                "savings_vs_worst_usd": {
                  "type": "number"
                },
                "side": {
                  "type": "string"
                },
                "size_usd": {
                  "type": "number"
                },
                "timestamp": {
                  "type": "string"
                },
                "valid_for_seconds": {
                  "type": "integer"
                }
              },
              "type": "object"
            }
          },
          "type": "object"
        }
      },
      "type": "object"
    },
    "version": "1.0.0"
  }
}

Use it

curl

curl "https://apexrunner.ai/signals/optimal-order-routing"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://apexrunner.ai/signals/optimal-order-routing");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://apexrunner.ai/signals/optimal-order-routing")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/12519.json, and this resource appears in /discovery/resources and /discovery/search.