Description

This endpoint provides an alternative to polling the /fixtures/odds endpoint and allows you to passively listen for updates. This endpoint leverages the SSE responses of the http protocol.

Best Practices

While our endpoint supports passing multiple leagues and game ids, we recommend making a separate connection for each league you are trying to subscribe to.

Example Request

Python

Requirements

import requests
from requests.exceptions import ChunkedEncodingError
import json
import sseclient # pip install sseclient-py

while True:
    try:
        r = requests.get(
            "https://api.opticodds.com/api/v3/stream/basketball/results",
            params={
                "key": "1234-5678-124",
                "league": ["NCAAB"],
            },
            stream=True,
        )
        client = sseclient.SSEClient(r)
        for event in client.events():
            if event.event == "fixture-results":
                data = json.loads(event.data)
                print("results data", ":", data)
            else:
                print(event.event, ":", event.data)
    except ChunkedEncodingError as ex:
        print("Disconnected, attempting to reconnect...")
    except Exception as e:
        print("Error:", r.status_code, r.text)
        break

Example Request

Node.js

const EventSource = require("eventsource");  // npm install eventsource

const url = "https://api.opticodds.com/api/v3/stream/basketball/results";
const params = {
  key: "1234-5678-124",
  league: ["NCAAB"],
};

function connectToStream() {
  // Construct the query string with repeated parameters
  const queryString = new URLSearchParams();
  queryString.append("key", params.key);
  params.league.forEach((league) => queryString.append("league", league));

  console.log(`${url}?${queryString.toString()}`);

  const eventSource = new EventSource(`${url}?${queryString.toString()}`);

  eventSource.onmessage = function (event) {
    try {
      const data = JSON.parse(event.data);
      console.log("message data:", data);
    } catch (e) {
      console.log("Error parsing message data:", e);
    }
  };

  eventSource.addEventListener("fixture-results", function (event) {
    const data = JSON.parse(event.data);
    console.log("results data:", data);
  });

  eventSource.onerror = function (event) {
    console.error("EventSource failed:", event);
    eventSource.close();
    setTimeout(connectToStream, 1000); // Attempt to reconnect after 1 second
  };
}

connectToStream();

Example Events

Connected Event

event: connected
retry: 5000
data: ok go

Ping Event

event: ping
retry: 5000
data: 2024-08-28T18:57:49Z

Fixture Results

event: fixture-results
id: 1722523617827-0
retry: 5000
data: {"data":{"fixture_id":"B176303C982E","is_live":false,"league":"NFL","player_results":[{"player":{"id":"4992BBAA7A28","name":"Ambry Thomas","number":20,"position":"CB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"38B5479924F9","name":"Brandon Aiyuk","number":11,"position":"WR"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":20,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":6,"receiving_touchdowns":0,"receiving_yards":49,"receiving_yards_per_reception":16.3,"receptions":3,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"64A3B77504FA","name":"Brayden Willis","number":9,"position":"TE"},"stats":[{"period":"all","stats":{"assists":1,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":1,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"337418C8A92F","name":"Brock Purdy","number":13,"position":"QB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":9,"passing_adj_qbr":69.8,"passing_attempts":38,"passing_completions":23,"passing_qb_rating":89.3,"passing_sack_yards_lost":4,"passing_sacks":1,"passing_touchdowns":1,"passing_yards":255,"passing_yards_per_pass_attempt":6.7,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":3,"rushing_touchdowns":0,"rushing_yards":12,"rushing_yards_per_rush_attempt":4,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"EB160C59A1AB","name":"Chamarri Conner","number":27,"position":"CB"},"stats":[{"period":"all","stats":{"assists":2,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":2,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"19C68291FAC0","name":"Charvarius Ward","number":7,"position":"CB"},"stats":[{"period":"all","stats":{"assists":1,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":1,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":3,"tackles_plus_assists":4,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"A99A9DABDC41","name":"Chris Conley","number":18,"position":"WR"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":18,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":1,"receiving_touchdowns":0,"receiving_yards":18,"receiving_yards_per_reception":18,"receptions":1,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":2,"tackles_plus_assists":2,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"34ABD726CED5","name":"Chris Jones","number":95,"position":"DT"},"stats":[{"period":"all","stats":{"assists":2,"defensive_passes_defended":0,"defensive_qb_hits":2,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":2,"tackles_plus_assists":4,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"431D7E287938","name":"Christian McCaffrey","number":23,"position":"RB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":1,"fumbles_lost":1,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":24,"longest_rush":11,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":8,"receiving_touchdowns":1,"receiving_yards":80,"receiving_yards_per_reception":10,"receptions":8,"rushing_attempts":22,"rushing_touchdowns":0,"rushing_yards":80,"rushing_yards_per_rush_attempt":3.6,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"11537C75A18A","name":"Clyde Edwards-Helaire","number":25,"position":"RB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":1,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"2708FE471F56","name":"Cole Christiansen","number":48,"position":"LB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"8346C902F544","name":"Darrell Luter Jr.","number":28,"position":"CB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":1,"fumbles_lost":1,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":1,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"273E9A5C74E8","name":"Deebo Samuel Sr.","number":1,"position":"WR"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":12,"longest_rush":9,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":11,"receiving_touchdowns":0,"receiving_yards":33,"receiving_yards_per_reception":11,"receptions":3,"rushing_attempts":3,"rushing_touchdowns":0,"rushing_yards":8,"rushing_yards_per_rush_attempt":2.7,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"98AF6EF93876","name":"Dee Winters","number":53,"position":"LB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"D52BDBDDB67C","name":"Demetrius Flannigan-Fowles","number":45,"position":"LB"},"stats":[{"period":"all","stats":{"assists":3,"defensive_passes_defended":1,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":1,"tackles_plus_assists":4,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"83CF7829B690","name":"Deommodore Lenoir","number":2,"position":"CB"},"stats":[{"period":"all","stats":{"assists":4,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":4,"tackles_plus_assists":8,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"668BC2EDB642","name":"Deon Bush","number":26,"position":"S"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"6F95BABC53A0","name":"Dre Greenlaw","number":57,"position":"LB"},"stats":[{"period":"all","stats":{"assists":3,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":3,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"6A4953F42726","name":"Drue Tranquill","number":23,"position":"LB"},"stats":[{"period":"all","stats":{"assists":2,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":2,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"B480027E53AC","name":"Elijah Mitchell","number":25,"position":"RB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":7,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":2,"rushing_touchdowns":0,"rushing_yards":8,"rushing_yards_per_rush_attempt":4,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"507D4715DA8C","name":"Felix Anudike-Uzomah","number":97,"position":"DE"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":1,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":1,"tackles_plus_assists":1,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"A538AA3A6A65","name":"Fred Warner","number":54,"position":"LB"},"stats":[{"period":"all","stats":{"assists":4,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":9,"tackles_plus_assists":13,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"92E8FD2960A4","name":"George Karlaftis","number":56,"position":"DE"},"stats":[{"period":"all","stats":{"assists":3,"defensive_passes_defended":0,"defensive_qb_hits":3,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":1,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0.5,"tackles":2,"tackles_plus_assists":5,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"42D0413964E3","name":"George Kittle","number":85,"position":"TE"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":4,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":3,"receiving_touchdowns":0,"receiving_yards":4,"receiving_yards_per_reception":2,"receptions":2,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"81AF570B9115","name":"George Odum","number":30,"position":"S"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":1,"tackles_plus_assists":1,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"4BCF56F823B8","name":"Harrison Butker","number":7,"position":"K"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":1,"extra_points_made":1,"field_goal_attempts":4,"field_goal_pct":100,"field_goals_made":4,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":13,"long_field_goal_made":57,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"64F1AACEA46E","name":"Isiah Pacheco","number":10,"position":"RB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":1,"fumbles_lost":1,"fumbles_recovered":1,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":8,"longest_rush":10,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":6,"receiving_touchdowns":0,"receiving_yards":33,"receiving_yards_per_reception":5.5,"receptions":6,"rushing_attempts":18,"rushing_touchdowns":0,"rushing_yards":59,"rushing_yards_per_rush_attempt":3.3,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"BB595AC21A3D","name":"Jack Cochrane","number":43,"position":"LB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"BD626BCAE9A0","name":"Jake Moody","number":4,"position":"K"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":2,"extra_points_made":1,"field_goal_attempts":3,"field_goal_pct":100,"field_goals_made":3,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":10,"long_field_goal_made":55,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"64B0A9A1BFDC","name":"Jauan Jennings","number":15,"position":"WR"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":23,"longest_rush":0,"passing_adj_qbr":99.2,"passing_attempts":1,"passing_completions":1,"passing_qb_rating":158.3,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":1,"passing_yards":21,"passing_yards_per_pass_attempt":21,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":5,"receiving_touchdowns":1,"receiving_yards":42,"receiving_yards_per_reception":10.5,"receptions":4,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"66434060DAB9","name":"Javon Hargrave","number":98,"position":"DT"},"stats":[{"period":"all","stats":{"assists":3,"defensive_passes_defended":0,"defensive_qb_hits":1,"defensive_tackles_for_loss":1,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":1,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":1,"tackles":3,"tackles_plus_assists":6,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"EDEB24F2EEA7","name":"Jaylen Watson","number":35,"position":"CB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":1,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":2,"tackles_plus_assists":2,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"B9BBD41A7176","name":"Ji'Ayir Brown","number":27,"position":"S"},"stats":[{"period":"all","stats":{"assists":4,"defensive_passes_defended":1,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":1,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":7,"tackles_plus_assists":11,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"B42F0AA45128","name":"Jordan Mason","number":24,"position":"RB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"8155697B7C12","name":"Joshua Williams","number":2,"position":"CB"},"stats":[{"period":"all","stats":{"assists":1,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":1,"tackles_plus_assists":2,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"C19050CBEA80","name":"Justin Reid","number":20,"position":"S"},"stats":[{"period":"all","stats":{"assists":5,"defensive_passes_defended":0,"defensive_qb_hits":1,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0.5,"tackles":4,"tackles_plus_assists":9,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"C561F380C959","name":"Justin Watson","number":84,"position":"WR"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":1,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":25,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":5,"receiving_touchdowns":0,"receiving_yards":54,"receiving_yards_per_reception":18,"receptions":3,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"6A5792FD2ABE","name":"Kevin Givens","number":90,"position":"DT"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":2,"tackles_plus_assists":2,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"D90F5836E97E","name":"Kyle Juszczyk","number":44,"position":"RB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":18,"longest_rush":2,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":2,"receiving_touchdowns":0,"receiving_yards":31,"receiving_yards_per_reception":15.5,"receptions":2,"rushing_attempts":1,"rushing_touchdowns":0,"rushing_yards":2,"rushing_yards_per_rush_attempt":2,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"EF81880254C6","name":"Leo Chenal","number":54,"position":"LB"},"stats":[{"period":"all","stats":{"assists":3,"defensive_passes_defended":0,"defensive_qb_hits":1,"defensive_tackles_for_loss":1,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":3,"tackles_plus_assists":6,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"6E03118CC40F","name":"Malik Herring","number":94,"position":"DE"},"stats":[{"period":"all","stats":{"assists":1,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":1,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"7ECC86914BEF","name":"Mecole Hardman","number":17,"position":"WR"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":52,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":3,"receiving_touchdowns":1,"receiving_yards":57,"receiving_yards_per_reception":19,"receptions":3,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"6BE925261591","name":"Mike Danna","number":51,"position":"DE"},"stats":[{"period":"all","stats":{"assists":2,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":1,"tackles_plus_assists":3,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"6C2367F28691","name":"Mike Pennel","number":69,"position":"DT"},"stats":[{"period":"all","stats":{"assists":4,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":1,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":2,"tackles_plus_assists":6,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"EBB395D572E2","name":"Mitch Wishnowsky","number":3,"position":"P"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":50.8,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":55,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":254,"punts":5,"punts_inside_20":3,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"8B72DF4A5554","name":"Neil Farrell","number":92,"position":"DE"},"stats":[{"period":"all","stats":{"assists":1,"defensive_passes_defended":1,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":1,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"A0D7440EC1DF","name":"Nic Jones","number":31,"position":"CB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"8B4BFB32C420","name":"Nick Bolton","number":32,"position":"LB"},"stats":[{"period":"all","stats":{"assists":8,"defensive_passes_defended":0,"defensive_qb_hits":2,"defensive_tackles_for_loss":1,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":5,"tackles_plus_assists":13,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"3250B1366213","name":"Nick Bosa","number":97,"position":"DE"},"stats":[{"period":"all","stats":{"assists":2,"defensive_passes_defended":0,"defensive_qb_hits":3,"defensive_tackles_for_loss":2,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":4,"tackles_plus_assists":6,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"DE86A90D0B9A","name":"Noah Gray","number":83,"position":"TE"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":12,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":2,"receiving_touchdowns":0,"receiving_yards":22,"receiving_yards_per_reception":11,"receptions":2,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"B671C99CB711","name":"Patrick Mahomes","number":15,"position":"QB"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":2,"fumbles_lost":0,"fumbles_recovered":1,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":1,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":22,"passing_adj_qbr":75.8,"passing_attempts":46,"passing_completions":34,"passing_qb_rating":99.3,"passing_sack_yards_lost":8,"passing_sacks":3,"passing_touchdowns":2,"passing_yards":333,"passing_yards_per_pass_attempt":7.2,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":9,"rushing_touchdowns":0,"rushing_yards":66,"rushing_yards_per_rush_attempt":7.3,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"D5BE2AF21C8F","name":"Rashee Rice","number":4,"position":"WR"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":1,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":13,"longest_rush":3,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":8,"receiving_touchdowns":0,"receiving_yards":39,"receiving_yards_per_reception":6.5,"receptions":6,"rushing_attempts":2,"rushing_touchdowns":0,"rushing_yards":5,"rushing_yards_per_rush_attempt":2.5,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"FC7853976520","name":"Robert Beal Jr.","number":51,"position":"DE"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":0,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"132B64CEDAC4","name":"San Francisco 49ers"}},{"player":{"id":"3553D4FD6CD7","name":"Tershawn Wharton","number":98,"position":"DT"},"stats":[{"period":"all","stats":{"assists":1,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":0,"tackles_plus_assists":1,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"A7EC5CA607D1","name":"Travis Kelce","number":87,"position":"TE"},"stats":[{"period":"all","stats":{"assists":0,"defensive_passes_defended":0,"defensive_qb_hits":0,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":22,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":10,"receiving_touchdowns":0,"receiving_yards":93,"receiving_yards_per_reception":10.3,"receptions":9,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":1,"tackles_plus_assists":1,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}},{"player":{"id":"3505E26D774B","name":"Trent McDuffie","number":22,"position":"CB"},"stats":[{"period":"all","stats":{"assists":1,"defensive_passes_defended":3,"defensive_qb_hits":2,"defensive_tackles_for_loss":0,"defensive_touchdowns":0,"extra_point_attempts":0,"extra_points_made":0,"field_goal_attempts":0,"field_goal_pct":0,"field_goals_made":0,"fumbles":0,"fumbles_lost":0,"fumbles_recovered":0,"gross_avg_punt_yards":0,"interception_touchdowns":0,"interception_yards":0,"interceptions":0,"kicking_points":0,"long_field_goal_made":0,"longest_punt":0,"longest_punt_return":0,"longest_reception":0,"longest_rush":0,"passing_adj_qbr":0,"passing_attempts":0,"passing_completions":0,"passing_qb_rating":0,"passing_sack_yards_lost":0,"passing_sacks":0,"passing_touchdowns":0,"passing_yards":0,"passing_yards_per_pass_attempt":0,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":0,"punt_yards":0,"punts":0,"punts_inside_20":0,"receiving_targets":0,"receiving_touchdowns":0,"receiving_yards":0,"receiving_yards_per_reception":0,"receptions":0,"rushing_attempts":0,"rushing_touchdowns":0,"rushing_yards":0,"rushing_yards_per_rush_attempt":0,"sacks":0,"tackles":2,"tackles_plus_assists":3,"touchbacks":0,"yards_per_punt_return":0}}],"status":"completed","team":{"id":"2D71E5BA64A5","name":"Kansas City Chiefs"}}],"score":{"events":[],"fixture":{"away_competitors":[{"abbreviation":"SF","id":"132B64CEDAC4","logo":"https://cdn.opticodds.com/team-logos/nfl/san_francisco_49ers.png","name":"San Francisco 49ers"}],"away_team_display":"San Francisco 49ers","game_id":"13602-13184-24-06","home_competitors":[{"abbreviation":"KC","id":"2D71E5BA64A5","logo":"https://cdn.opticodds.com/team-logos/nfl/kansas_city_chiefs.png","name":"Kansas City Chiefs"}],"home_team_display":"Kansas City Chiefs","id":"B176303C982E","is_live":false,"start_date":"2024-02-11T23:30:00+00:00","status":"completed"},"in_play":{"balls":null,"batter":null,"clock":null,"distance_to_go":null,"down":null,"last_play":null,"outs":null,"period":null,"pitcher":null,"possession":null,"runners":null,"strikes":null,"time_min":null,"time_sec":null},"league":{"id":"nfl","name":"NFL"},"retirement_info":null,"scores":{"away":{"aggregate":null,"periods":{"period_1":0,"period_2":10,"period_3":0,"period_4":9,"period_5":3},"total":22},"home":{"aggregate":null,"periods":{"period_1":0,"period_2":3,"period_3":10,"period_4":6,"period_5":6},"total":25}},"sport":{"id":"football","name":"Football"},"stats":{"away":[{"period":"all","stats":{"defensive_passes_defended":2,"defensive_qb_hits":7,"defensive_tackles_for_loss":6,"defensive_touchdowns":0,"field_goal_pct":100,"fumbles":2,"fumbles_lost":2,"fumbles_recovered":1,"gross_avg_punt_yards":50.8,"interception_touchdowns":0,"interception_yards":0,"interceptions":1,"kicking_extra_points_made_extra_point_attempts":2,"kicking_field_goals_made_field_goal_attempts":3,"kicking_points":10,"long_field_goal_made":55,"longest_punt":55,"longest_punt_return":0,"longest_reception":24,"longest_rush":11,"passing_completions_passing_attempts":39,"passing_qb_rating":99.9,"passing_sacks_sack_yards_lost":"1-4","passing_touchdowns":2,"passing_yards":272,"passing_yards_per_pass_attempt":7.1,"punt_return_touchdowns":0,"punt_return_yards":0,"punt_returns":2,"punt_yards":254,"punts":5,"punts_inside_20":3,"receiving_targets":37,"receiving_touchdowns":2,"receiving_yards":276,"receiving_yards_per_reception":11.5,"receptions":24,"rushing_attempts":31,"rushing_touchdowns":0,"rushing_yards":110,"rushing_yards_per_rush_attempt":3.5,"sacks":3,"tackles":53,"tackles_plus_assists":93,"touchbacks":0,"yards_per_punt_return":0}}],"home":[{"period":"all","stats":{"defensive_passes_defended":6,"defensive_qb_hits":11,"defensive_tackles_for_loss":4,"defensive_touchdowns":0,"field_goal_pct":100,"fumbles":5,"fumbles_lost":1,"fumbles_recovered":6,"gross_avg_punt_yards":50.8,"interceptions":1,"kicking_extra_points_made_extra_point_attempts":1,"kicking_field_goals_made_field_goal_attempts":4,"kicking_points":13,"long_field_goal_made":57,"longest_punt":62,"longest_punt_return":7,"longest_reception":52,"longest_rush":22,"passing_completions_passing_attempts":46,"passing_qb_rating":99.3,"passing_sacks_sack_yards_lost":"3-8","passing_touchdowns":2,"passing_yards":325,"passing_yards_per_pass_attempt":7.2,"punt_return_touchdowns":0,"punt_return_yards":12,"punt_returns":4,"punt_yards":254,"punts":5,"punts_inside_20":2,"receiving_targets":42,"receiving_touchdowns":2,"receiving_yards":333,"receiving_yards_per_reception":9.8,"receptions":34,"rushing_attempts":30,"rushing_touchdowns":0,"rushing_yards":130,"rushing_yards_per_rush_attempt":4.3,"sacks":1,"tackles":35,"tackles_plus_assists":76,"touchbacks":0,"yards_per_punt_return":3}}]}},"sport":"football"},"entry_id":"1722523617827-0"}
Language
Authorization
Click Try It! to start a request and see the response here!