Metrics

Provides AI-driven, machine-learned insights/metrics.

Metrics

The metrics include provides AI-driven, machine-learned insights—such as predictions and smart money indicators—categorized by domain-specific groups to help identify advanced match trends.

Availability: This data is only included in the response when explicitly requested using the query parameter include=metrics.

Object Schema

FieldTypeDescription
team_idintegerThe ID of the team the metric relates to (uses 0 for neutral or match-level metrics).
type_idintegerThe unique ID associated with the metric type.
developer_namestringThe unique constant identifier (e.g., PREDICTION_GL_CONFIDENCE).
valuenumberThe calculated value or probability of the metric.
metaobjectOptional. Additional context such as reasons, line, or labels. Omitted if null.

Dynamic Metadata
The meta object is dynamic. Its properties (such as line, reasons, or note) vary based on the developer_name. Developers should implement flexible parsing for this object as fields are specific to the individual metric type.

Filtering Metrics

You can filter metrics by specific IDs or entire domain groups using the following patterns:

  • By Type IDs: filter[metrics]=types:1,2,3
  • By Developer Types: filter[metrics]=developer_types:predictions,smartmoney

Example Response

"metrics": [
  {
    "team_id": 0,
    "type_id": 105,
    "developer_name": "PREDICTION_GL_CONFIDENCE",
    "value": 70,
    "meta": {
      "note": "Base Confidence=70 (Clear xMetric advantage), Bonus=0, Final Confidence=70"
    }
  },
  {
    "team_id": 0,
    "type_id": 106,
    "developer_name": "PREDICTION_GL_UNDER",
    "value": 2.93,
    "meta": {
      "line": 3,
      "reasons": ["Both teams create few dangerous attacks"],
      "market_id": 3
    }
  }
]