mirrored listing x402 eip155:8453

APEX Runner: Execution Window Optimizer Signal

APEX Runner: Execution Window Optimizer 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": "Identifies optimal execution windows based on volatility and liquidity. Scores the current window 0-100 and forecasts the next high-score window. Uses ATR, Bollinger Band width, and order book depth from APEX live exchange data.",
    "example": {
      "current_window_score": 78,
      "execute_now": true,
      "liquidity_condition": "DEEP",
      "next_optimal_window": "now",
      "reason": "Low volatility and deep liquidity — favorable execution conditions",
      "volatility_regime": "LOW",
      "window_label": "GOOD"
    },
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "coin": "BTC"
        },
        "type": "http"
      },
      "output": {
        "current_window_score": "integer — execution quality score 0-100 (higher = better conditions)",
        "example": {
          "current_window_score": 78,
          "execute_now": true,
          "volatility_regime": "LOW",
          "window_label": "GOOD"
        },
        "execute_now": "boolean — true when score >= 60",
        "liquidity_condition": "string — DEEP / MODERATE / THIN based on order book depth",
        "next_optimal_window": "string — ISO8601 UTC timestamp or 'now' if current window is optimal",
        "reason": "string — plain-English explanation of window quality",
        "type": "json",
        "volatility_regime": "string — LOW / NORMAL / HIGH / EXTREME based on current ATR",
        "window_label": "string — EXCELLENT / GOOD / FAIR / POOR based on score"
      }
    },
    "name": "APEX Execution Window Optimizer",
    "outputSchema": {
      "current_window_score": "integer",
      "execute_now": "boolean",
      "liquidity_condition": "string",
      "next_optimal_window": "string",
      "reason": "string",
      "volatility_regime": "string",
      "window_label": "string"
    },
    "schema": {
      "properties": {
        "input": {
          "properties": {
            "queryParams": {
              "properties": {
                "coin": {
                  "default": "BTC",
                  "enum": [
                    "AVAX",
                    "BTC",
                    "ETH",
                    "LINK",
                    "SOL",
                    "XRP"
                  ],
                  "type": "string"
                }
              },
              "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"
                },
                "components": {
                  "properties": {
                    "fear_greed": {
                      "properties": {
                        "score": {
                          "type": "integer"
                        },
                        "value": {
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    },
                    "fill_velocity": {
                      "properties": {
                        "score": {
                          "type": "integer"
                        },
                        "velocity": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "regime": {
                      "properties": {
                        "regime": {
                          "type": "string"
                        },
                        "score": {
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    },
                    "time_of_day": {
                      "properties": {
                        "score": {
                          "type": "integer"
                        },
                        "session": {
                          "type": "string"
                        },
                        "utc_hour": {
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    },
                    "volatility": {
                      "properties": {
                        "atr_pct": {
                          "type": "number"
                        },
                        "score": {
                          "type": "integer"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "next_optimal_window": {
                  "type": "string"
                },
                "rationale": {
                  "type": "string"
                },
                "recommended_order_type": {
                  "type": "string"
                },
                "timestamp": {
                  "type": "string"
                },
                "valid_for_seconds": {
                  "type": "integer"
                },
                "verdict": {
                  "type": "string"
                },
                "window_score": {
                  "type": "integer"
                }
              },
              "type": "object"
            }
          },
          "type": "object"
        }
      },
      "type": "object"
    },
    "version": "1.0.0"
  }
}

Use it

curl

curl "https://apexrunner.ai/signals/execution-window-optimizer"
# -> 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/execution-window-optimizer");
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/execution-window-optimizer")
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/12518.json, and this resource appears in /discovery/resources and /discovery/search.