# madeonsol Signal Scorecard — Runner Rate Performance

> madeonsol Signal Scorecard — Runner Rate Performance is a paid API for AI agents from madeonsol.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns out-of-sample reliability metrics (hit rate, base rate, lift, sample size, test window) for the runner_rate signal, with optional daily drift history

## Facts

- Endpoint: GET https://madeonsol.com/api/x402/signals/runner_rate/performance
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/madeonsol-signal-scorecard-runner-rate-performance-dc8648d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QpP_rOzqAlNABWDTfTbyV

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 madeonsol-signal-scorecard-runner-rate-performance-dc8648d5
```

Example prompt: Pull the runner_rate signal scorecard from madeonsol — I want to see its hit rate, base rate, lift, and sample size, and also include the daily drift series so I can see how it's been performing over time.

## When to prefer this

Use this endpoint when you need to statistically validate the runner_rate signal before acting on it — specifically when you want hit rate, lift over base rate, and sample size to assess whether the signal has genuine predictive power. Use with history=true when you want to detect signal decay or drift over time. Prefer this over raw signal output endpoints when the goal is auditing signal quality rather than consuming live signal values.

## Known failure modes

- Signal name not found — may return 404 or empty result if runner_rate is unavailable
- Insufficient sample size — scorecard may warn of low statistical confidence
- Payment failure — x402 payment of $0.01 USDC must succeed before data is returned
- history parameter must be exactly 'true' or 'false' string; other values may be rejected

## How this service works

Calibration and historical performance data for the runner_rate signal. Returns bucketed hit rates, lift, sample counts, and rolling daily history.

## Output

A scorecard object containing out-of-sample reliability metrics for the runner_rate signal: hit rate (how often the signal is correct), base rate (baseline frequency), lift (improvement over baseline), sample size (number of observations), and the test window (date range evaluated). When history=true, also includes a per-day drift series showing how signal accuracy has evolved daily.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "enum": [
        "dump_cluster_count",
        "runner_rate",
        "recycled_early_buyer_count",
        "coordination_count",
        "scout_first_touch"
       ],
       "type": "string",
       "description": "Signal name"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "history": {
       "enum": [
        "true",
        "false"
       ],
       "type": "string",
       "default": "false",
       "description": "Include the per-day drift series"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "description": "JSON payload — full field reference at https://madeonsol.com/x402",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/madeonsol-signal-scorecard-runner-rate-performance-dc8648d5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from madeonsol.com](https://www.zero.xyz/host/madeonsol.com/llms.txt)
