mirrored listing x402 eip155:8453

Calibrated 1X2 probabilities plus derived markets (totals, BTTS, correct score) for every

Calibrated 1X2 probabilities plus derived markets (totals, BTTS, correct score) for every upcoming fixture across the big-five European leagues. Backed by a public, Brier-scored track record.

Do you run sports-predictor-api.fly.dev? 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
20000 (raw units)
price
10
calls / 30d
7
unique payers
2026-09-16
updated

Provider

sports-predictor-api.fly.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

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

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "days": 14
        },
        "type": "http"
      },
      "output": {
        "example": {
          "count": 1,
          "fixtures": [
            {
              "away": "Coventry City",
              "date": "2026-08-21",
              "expected_goals": {
                "away": 0.71,
                "home": 2.14
              },
              "home": "Arsenal",
              "league": "premier_league",
              "league_label": "Premier League",
              "markets": {
                "btts": {
                  "no": 0.55,
                  "yes": 0.45
                },
                "correct_score": [
                  {
                    "p": 0.13,
                    "score": "2-0"
                  }
                ],
                "totals": {
                  "2.5": {
                    "over": 0.54,
                    "under": 0.46
                  }
                }
              },
              "probabilities": {
                "away": 0.14,
                "draw": 0.2,
                "home": 0.66
              }
            }
          ],
          "generated_at": "2026-08-14T09:00:00+00:00",
          "window_days": 14
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "const": "GET",
              "type": "string"
            },
            "queryParams": {
              "additionalProperties": false,
              "properties": {
                "days": {
                  "default": 14,
                  "description": "How far ahead to include fixtures, in days.",
                  "maximum": 30,
                  "minimum": 1,
                  "type": "integer"
                }
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "count": {
                  "type": "integer"
                },
                "fixtures": {
                  "items": {
                    "properties": {
                      "away": {
                        "type": "string"
                      },
                      "date": {
                        "format": "date",
                        "type": "string"
                      },
                      "expected_goals": {
                        "properties": {
                          "away": {
                            "type": "number"
                          },
                          "home": {
                            "type": "number"
                          }
                        },
                        "type": "object"
                      },
                      "home": {
                        "type": "string"
                      },
                      "league": {
                        "type": "string"
                      },
                      "league_label": {
                        "type": "string"
                      },
                      "markets": {
                        "description": "Over/under lines, both-teams-to-score and likeliest scorelines. Raw model output, not calibrated.",
                        "type": "object"
                      },
                      "probabilities": {
                        "description": "Calibrated 1X2 probabilities; sum to 1.",
                        "properties": {
                          "away": {
                            "type": "number"
                          },
                          "draw": {
                            "type": "number"
                          },
                          "home": {
                            "type": "number"
                          }
                        },
                        "type": "object"
                      }
                    },
                    "required": [
                      "date",
                      "home",
                      "away",
                      "probabilities"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                },
                "generated_at": {
                  "format": "date-time",
                  "type": "string"
                },
                "window_days": {
                  "type": "integer"
                }
              },
              "required": [
                "generated_at",
                "count",
                "fixtures"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://sports-predictor-api.fly.dev/api/v1/probabilities"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://sports-predictor-api.fly.dev/api/v1/probabilities");
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://sports-predictor-api.fly.dev/api/v1/probabilities")
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/4182.json, and this resource appears in /discovery/resources and /discovery/search.