SmartMoney

SmartMoney metrics

  • Purpose: Quantify notable market support for a specific outcome by measuring a bookmaker's (or aggregated) price deviation versus the market. Values are expressed as a percentage and represent relative deviation used to surface potential market-driven value.
  • Where to use: Attach to fixture.metrics for frontend display, alerts, filtering rules, signal generation, or manual review in pre-match analytics. Use the developer_name to identify the metric, value as the magnitude (percentage), and meta for contextual routing (contains market_id, label_id, line).
  • Format notes: Example metric shows the expected JSON shape. Keep metrics read-only in consumers; treat them as signals, not definitive bets.
type_iddeveloper_namedescription
224SMARTMONEY_GL_OVERIndicates market movement toward higher goal expectation (support for the Over on the Goal Line).
225SMARTMONEY_GL_UNDERIndicates market movement toward lower goal expectation (support for the Under on the Goal Line).
226SMARTMONEY_COR_OVERIndicates increased market support for more corners (Over on Corners market).
227SMARTMONEY_COR_UNDERIndicates increased market support for fewer corners (Under on Corners market).
229SMARTMONEY_YC_UNDERIndicates increased market support for fewer yellow cards (Under on Yellow Cards market).
228SMARTMONEY_YC_OVERIndicates increased market support for more yellow cards (Over on Yellow Cards market).
230SMARTMONEY_AH_HOMEIndicates increased market support for the home side on the Asian Handicap market.
231SMARTMONEY_AH_AWAYIndicates increased market support for the away side on the Asian Handicap market.
232SMARTMONEY_ML_HOMEIndicates increased market support for the home outcome on the Money Line market.
233SMARTMONEY_ML_DRAWIndicates increased market support for the draw outcome on the Money Line market.
234SMARTMONEY_ML_AWAYIndicates increased market support for the away outcome on the Money Line market.

Example smartmoney metric with meta property:

{
    "fixture_id": 12345,
    "team_id": 0,
    "developer_name": "SMARTMONEY_GL_OVER",
    "value": 2.3,
    "meta": {
        "market_id": 3,
        "label_id": 1,
        "line": 2.5
    }
}