Sports Table

Description: Displays sports-related information including scores, standings, and statistics.

API Response Structure:

{
  "sport": "Football",
  "league": "Premier League",
  "standings": [
    {
      "team": "Team Name",
      "position": 1,
      "played": 38,
      "points": 86,
      "goalDifference": "+45"
    }
  ],
  "type": "instantAnswers",
  "configType": "sportsTable"
}

Fields:

  • sport (string): Sport name

  • league (string): League or competition name

  • standings (array): Team standings

    • team (string): Team name

    • position (number): League position

    • played (number): Games played

    • points (number): Total points

    • goalDifference (string): Goal difference

  • type (string): Always "instantAnswers"

  • configType (string): Always "sportsTable"