Integration GuidesReference Docs
Coverage MatrixDocumentationChange LogLog InContact Us
Integration Guides

Push Feeds

Streamline your access to live game updates by utilizing our NCAA Football (NCAAFB) Push feeds.

Intro

With our RESTful endpoints, you'll make API requests when you want to receive new data. But our Push feeds allow you to open a connection with a single call to receive continuous live updates. Once this connection opens, it will remain open indefinitely.

Thus, Push feeds are an efficient option to retrieve live NCAAFB game data. You need not worry about API pull frequency, but need only to "listen" for game updates.



RESTful & Push

Each Push update comes in the form of a JSON payload, which will mimic the structure of a similar RESTful NCAAFB API endpoint. Below are the Push endpoints alongside their RESTful counterparts.

It's important to note that our Push service is not meant to replace our RESTful API, but to complement it. Push does not provide a "stateful session". There is no memory or method to access data sent previously. If you are disconnected from a Push session, use the corresponding RESTful API feed to catch up or recover from the disconnection. For example, if you experience a disconnection from a game while using Push Events, request the RESTful Play-by-Play to capture the plays missed during the disconnection.

Additionally, it is important to note that Push feeds correlate to RESTful endpoints, but are not necessarily a 1:1 parity for all NCAAFB data. For a complete college football experience, you will need to make use of RESTful endpoints.



Access

NCAAFB Push feeds are an add-on service, and unavailable in the self-issued NCAAFB trial within your account. Reach out to a sales representative for trial access.

🔐

NCAAFB Push feeds are available for Sportradar Realtime customers only


Make a Request

Each Push feed will begin with a URL request appended with your unique API key, as with our other RESTful API endpoints.

https://api.sportradar.com/ncaafb/{access_level}/stream/{language_code}/{push_feed}/subscribe?api_key={your_api_key}

When constructed, the above call opens up an HTTP redirect connection, returning all Push data for the requested feed. To filter results to a smaller data set include an optional query string.

There are no restrictions on the number of connections you may have open. Feel free to filter requests to individual games and close the connections when games complete, or keep a single unfiltered connection open indefinitely.

Visit the feed endpoints pages for complete syntax instructions.


Filtering

By default, a Push feed will provide all data available. For example, a Push Events connection would stream all NCAA games in progress to your application. If needed, you can filter the data returned by including query strings.

For example, let's say you want to restrict your connection to one NCAA game in progress. Construct your call as normal and add the unique game id to the query string.

Here's an example: https://api.sportradar.us/ncaafb/trial/stream/en/events/subscribe?api_key={your_api_key}&match=sd:match:0f23d300-5bec-4dc2-a7b0-1b8e05751d11

Visit the feed endpoints pages for complete query string syntax instructions.


Technical Requirements

To accept data from our Push feeds, ensure that your application can:

  • Follow an HTTP redirect, or use the location provided in the feeds header within one minute of your initial request.
  • Accept HTTP data transfer encoded as chunked.


Payloads

Our Push services are delivered by HTTP Streaming with chunked encoding, also commonly called HTTP Chunked. The streaming of data is based on long HTTP response. Chunked streaming allows you to act on the chunks immediately instead of waiting or requesting a full file.

When new feed content is available, the server pushes that information out to your client. When no new information is available on a feed, a heartbeat message is sent every 5 seconds to keep the connection active.

Messages are delivered in JSON format only.

{
   "heartbeat":{
      "interval":5000
   }
}{
   "heartbeat":{
      "interval":5000
   }
}{
   "heartbeat":{
      "interval":5000
   }
}{
   "payload":{
      "game":{
         "id":"fba71d07-56aa-4856-8f86-e51818f1362f",
         "status":"inprogress",
         "coverage":"full",
         "neutral_site":true,
         "game_type":"regular",
         "conference_game":true,
         "scheduled":"2024-08-24T16:00:00+00:00",
         "entry_mode":"LDE",
         "wx_temp":63,
         "wx_humidity":52,
         "wx_wind_speed":19,
         "wx_wind_direction":"W",
         "wx_condition":"Partly cloudy",
         "weather":"Partly cloudy Temp: 63 F, Humidity: 52%, Wind: W 19 mph",
         "quarter":1,
         "clock":"6:38",
         "sr_id":"sr:match:49329347",
         "summary":{
            "season":{
               "id":"908fbc20-f5c7-11ee-a306-c311afc28263",
               "year":2024,
               "type":"REG",
               "name":"REG"
            },
            "week":{
               "id":"b29f1b2b-e603-4475-8fce-35d20feb261d",
               "sequence":1,
               "title":"1"
            },
            "venue":{
               "id":"c98ace28-f447-46f4-a0d1-af3b94e00cc3",
               "name":"Aviva Stadium",
               "city":"Dublin",
               "country":"IRL",
               "address":"62 Lansdowne Road",
               "capacity":49000,
               "surface":"turf",
               "roof_type":"outdoor",
               "location":{
                  "latitude":"53.3353",
                  "longitude":"-6.2284"
               }
            },
            "home":{
               "name":"Yellow Jackets",
               "market":"Georgia Tech",
               "alias":"GT",
               "used_timeouts":0,
               "remaining_timeouts":3,
               "used_challenges":0,
               "remaining_challenges":1,
               "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
               "points":7
            },
            "away":{
               "name":"Seminoles",
               "market":"Florida State",
               "alias":"FSU",
               "used_timeouts":0,
               "remaining_timeouts":3,
               "used_challenges":0,
               "remaining_challenges":1,
               "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf",
               "points":8
            }
         }
      },
      "event":{
         "type":"play",
         "id":"13bb4210-6236-11ef-8388-3ff47a6a4c01",
         "sequence":1724517026840.0,
         "clock":"6:51",
         "home_points":7,
         "away_points":8,
         "created_at":"2024-08-24T16:30:26+00:00",
         "updated_at":"2024-08-24T16:30:27+00:00",
         "play_type":"rush",
         "wall_clock":"2024-08-24T16:30:13+00:00",
         "source":"SRUS",
         "fake_punt":false,
         "fake_field_goal":false,
         "screen_pass":false,
         "play_action":false,
         "run_pass_option":false,
         "description":"D.Uiagalelei scrambles for 2 yards. Tackled by J.Robinson at FSU 30.",
         "period":{
            "id":"fe274f6c-f013-49c3-9296-dd8f51a7399c",
            "number":1,
            "sequence":1
         },
         "drive":{
            "id":"7b6ac9fa-ea33-476e-8e40-ac1e2effae69",
            "sequence":3,
            "team_sequence":2,
            "start_reason":"Kickoff",
            "end_reason":"UNKNOWN",
            "play_count":2,
            "duration":"00:48",
            "start_clock":"7:26",
            "end_clock":"00:00",
            "first_downs":0,
            "gain":5,
            "first_drive_yardline":75,
            "last_drive_yardline":72,
            "farthest_drive_yardline":70,
            "penalty_yards":0,
            "net_yards":5,
            "pat_points_attempted":0
         },
         "offensive_team":{
            "points":0,
            "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
         },
         "defensive_team":{
            "points":0,
            "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9"
         },
         "start_situation":{
            "clock":"6:51",
            "down":2,
            "yfd":7,
            "possession":{
               "name":"Seminoles",
               "market":"Florida State",
               "alias":"FSU",
               "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
            },
            "location":{
               "name":"Seminoles",
               "market":"Florida State",
               "alias":"FSU",
               "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf",
               "yardline":28
            }
         },
         "end_situation":{
            "clock":"6:38",
            "down":3,
            "yfd":5,
            "possession":{
               "name":"Seminoles",
               "market":"Florida State",
               "alias":"FSU",
               "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
            },
            "location":{
               "name":"Seminoles",
               "market":"Florida State",
               "alias":"FSU",
               "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf",
               "yardline":30
            }
         },
         "statistics":[
            {
               "stat_type":"rush",
               "attempt":1,
               "yards":2,
               "firstdown":0,
               "inside_20":0,
               "goaltogo":0,
               "broken_tackles":0,
               "kneel_down":0,
               "scramble":1,
               "team":{
                  "name":"Seminoles",
                  "market":"Florida State",
                  "alias":"FSU",
                  "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
               },
               "player":{
                  "name":"DJ Uiagalelei",
                  "jersey":"04",
                  "id":"c38d1735-ee11-4711-8698-f5405e691365",
                  "position":"QB"
               }
            },
            {
               "stat_type":"defense",
               "category":"defense",
               "tackle":1,
               "def_target":0,
               "def_comp":0,
               "blitz":0,
               "hurry":0,
               "knockdown":0,
               "batted_pass":0,
               "def_yards_against":0,
               "interception_return":0,
               "int_return_play":0,
               "team":{
                  "name":"Yellow Jackets",
                  "market":"Georgia Tech",
                  "alias":"GT",
                  "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9"
               },
               "player":{
                  "name":"Joshua Robinson",
                  "jersey":"27",
                  "id":"1d0537ee-1f20-46e1-9c64-0d152f6f2865",
                  "position":"DL"
               }
            }
         ],
         "details":[
            {
               "category":"scramble",
               "description":"D.Uiagalelei scrambles for 2 yards.",
               "sequence":0,
               "yards":2,
               "result":"tackled",
               "alt_description":"",
               "start_location":{
                  "name":"Seminoles",
                  "market":"Florida State",
                  "alias":"FSU",
                  "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf",
                  "yardline":28
               },
               "end_location":{
                  "name":"Seminoles",
                  "market":"Florida State",
                  "alias":"FSU",
                  "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf",
                  "yardline":30
               },
               "players":[
                  {
                     "role":"pass",
                     "name":"DJ Uiagalelei",
                     "jersey":"04",
                     "id":"c38d1735-ee11-4711-8698-f5405e691365",
                     "position":"QB"
                  }
               ]
            },
            {
               "category":"tackle",
               "description":"Tackled by J.Robinson at FSU 30.",
               "sequence":1,
               "alt_description":"",
               "start_location":{
                  "name":"Seminoles",
                  "market":"Florida State",
                  "alias":"FSU",
                  "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf",
                  "yardline":30
               },
               "end_location":{
                  "name":"Seminoles",
                  "market":"Florida State",
                  "alias":"FSU",
                  "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf",
                  "yardline":30
               },
               "players":[
                  {
                     "role":"tackle",
                     "name":"Joshua Robinson",
                     "jersey":"27",
                     "id":"1d0537ee-1f20-46e1-9c64-0d152f6f2865",
                     "position":"DL"
                  }
               ]
            }
         ]
      }
   },
   "locale":"en",
   "metadata":{
      "league":"ncaafb",
      "match":"sd:match:fba71d07-56aa-4856-8f86-e51818f1362f,sr:match:49329347",
      "status":"inprogress",
      "event_type":"rush",
      "event_category":"",
      "locale":"en",
      "operation":"update",
      "version":"v7",
      "team":"sd:team:1c792ab1-d640-48f2-b796-6a81c7b14eaf"
   }
}{
   "heartbeat":{
      "interval":5000
   }
}{
   "heartbeat":{
      "interval":5000
   }
}

Disconnections

Should you cease to receive heartbeat messages, or are disconnected from the Push service for any reason, re-connect using your same initial request.


Metadata

Each payload includes a metadata header message. The metadata includes information on the type of payload, as well as possible filtering options, saving processing and integration time.

"locale":"en",
"metadata":{
  "league":"ncaafb",
  "match":"sd:match:fba71d07-56aa-4856-8f86-e51818f1362f,sr:match:49329347",
  "status":"inprogress",
  "event_type":"pass",
  "event_category":"big_play",
  "locale":"en",
  "operation":"update",
  "version":"v7",
  "team":"sd:team:1c792ab1-d640-48f2-b796-6a81c7b14eaf"
"locale":"en",
"metadata":{
  "league":"ncaafb",
  "match":"sd:match:fba71d07-56aa-4856-8f86-e51818f1362f,sr:match:49329347",
  "status":"inprogress",
  "participant":"sd:player:e712e660-924e-4d9e-9789-cd0c9f8d9c5f",
  "locale":"en",
  "operation":"update",
  "version":"v7"

Comma delimited values in the header are interpreted as an array of values.

"match":"sd:match:fba71d07-56aa-4856-8f86-e51818f1362f,sr:match:49329347"

Visit the Endpoints documentation for each feed to view all available data points.



Samples


Code Samples

To best utilize Push feeds, see the below code samples in Ruby and Java. These provide an example of a method to consume the feeds. Using these samples will output the feeds content to STDOUT.

For Java, we have also provided a Stream Client to assist your integration.

Note: In the provided Java sample, replace "URL GOES HERE" with the desired Push feed URL.

require 'httpclient'

module Sportradar
    module HTTP
        module Stream
            class Client
                attr_reader :url, :logger

                def initialize(url, publisher, logger)
                    @url = url
                    @logger = logger
                    @publisher = publisher
                    @client = ::HTTPClient.new(:agent_name => 'SportsData/1.0')
                end

                def start
                    @thread ||= Thread.new do
                        logger.debug "Starting loop"
                        @client.get_content(url, :follow_redirect => true) do |chunk|
                            @publisher.publish(::JSON.parse(chunk)) if @publisher
                        end
                        logger.debug "finished loop"
                    end
                end

                def stop
                    @thread.terminate if @thread
                end

            end
        end
    end
end
package com.sportradar.http.stream.client;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class StreamClientTest {

	private StreamClient client;

	private static String SERVICE_URL = "<URL GOES HERE>";

	@Before
	public void setup() {
		client = new StreamClient();
	}

	@After
	public void cleanup() {
		client.terminate();
	}

	@Test
	public void testStream() throws Exception {
		Handler handler = new ConsoleHandler();
		client.stream(SERVICE_URL, handler);
		System.out.println("Connecting....");
		Thread.sleep(1 * 60 * 1000);
		System.out.println("Disconnecting....");
	}

}

Data Samples



ID Updates

All updates to the Push feeds are categorized as an update or a delete. These will be found within metadata.operation.

Updates may be the creation of an event or an update of information to a previous event.

When you receive an event with the same ID as an event that has been previously consumed, it is best practice to replace the data from the previous message with the data consumed in the most recent message.

{
   "payload":{
      "game":{
         "id":"fba71d07-56aa-4856-8f86-e51818f1362f",
         "status":"inprogress",
         "coverage":"full",
         "neutral_site":true,
         "game_type":"regular",
         "conference_game":true,
         "scheduled":"2024-08-24T16:00:00+00:00",
         "entry_mode":"LDE",
         "wx_temp":63,
         "wx_humidity":52,
         "wx_wind_speed":19,
         "wx_wind_direction":"W",
         "wx_condition":"Partly cloudy",
         "weather":"Partly cloudy Temp: 63 F, Humidity: 52%, Wind: W 19 mph",
         "quarter":1,
         "clock":"5:26",
         "sr_id":"sr:match:49329347",
         "summary":{
            "season":{
               "id":"908fbc20-f5c7-11ee-a306-c311afc28263",
               "year":2024,
               "type":"REG",
               "name":"REG"
            },
            "week":{
               "id":"b29f1b2b-e603-4475-8fce-35d20feb261d",
               "sequence":1,
               "title":"1"
            },
            "venue":{
               "id":"c98ace28-f447-46f4-a0d1-af3b94e00cc3",
               "name":"Aviva Stadium",
               "city":"Dublin",
               "country":"IRL",
               "address":"62 Lansdowne Road",
               "capacity":49000,
               "surface":"turf",
               "roof_type":"outdoor",
               "location":{
                  "latitude":"53.3353",
                  "longitude":"-6.2284"
               }
            },
            "home":{
               "name":"Yellow Jackets",
               "market":"Georgia Tech",
               "alias":"GT",
               "used_timeouts":0,
               "remaining_timeouts":3,
               "used_challenges":0,
               "remaining_challenges":1,
               "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
               "points":7
            },
            "away":{
               "name":"Seminoles",
               "market":"Florida State",
               "alias":"FSU",
               "used_timeouts":0,
               "remaining_timeouts":3,
               "used_challenges":0,
               "remaining_challenges":1,
               "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf",
               "points":8
            }
         }
      },
      "event":{
         "type":"play",
         "id":"461804f0-6236-11ef-8388-3ff47a6a4c01",
         "sequence":1724517098141.0,
         "clock":"5:39",
         "home_points":7,
         "away_points":8,
         "created_at":"2024-08-24T16:31:38+00:00",
         "updated_at":"2024-08-24T16:31:39+00:00",
         "play_type":"pass",
         "wall_clock":"2024-08-24T16:31:24+00:00",
         "source":"SRUS",
         "fake_punt":false,
         "fake_field_goal":false,
         "screen_pass":false,
         "play_action":false,
         "run_pass_option":false,
         "description":"D.Uiagalelei pass complete. Catch made by M.Benson for 4 yards. Tackled by GT at GT 45.",
         "period":{
            "id":"fe274f6c-f013-49c3-9296-dd8f51a7399c",
            "number":1,
            "sequence":1
         },
         "drive":{
            "id":"7b6ac9fa-ea33-476e-8e40-ac1e2effae69",
            "sequence":3,
            "team_sequence":2,
            "start_reason":"Kickoff",
            "end_reason":"UNKNOWN",
            "play_count":4,
            "duration":"2:00",
            "start_clock":"7:26",
            "end_clock":"00:00",
            "first_downs":1,
            "gain":30,
            "first_drive_yardline":75,
            "last_drive_yardline":49,
            "farthest_drive_yardline":45,
            "penalty_yards":0,
            "net_yards":30,
            "pat_points_attempted":0
         },
         "offensive_team":{
            "points":0,
            "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
         },
         "defensive_team":{
            "points":0,
            "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9"
         },
         "start_situation":{
            "clock":"5:39",
            "down":1,
            "yfd":10,
            "possession":{
               "name":"Seminoles",
               "market":"Florida State",
               "alias":"FSU",
               "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
            },
            "location":{
               "name":"Yellow Jackets",
               "market":"Georgia Tech",
               "alias":"GT",
               "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
               "yardline":49
            }
         },
         "end_situation":{
            "clock":"5:26",
            "down":2,
            "yfd":6,
            "possession":{
               "name":"Seminoles",
               "market":"Florida State",
               "alias":"FSU",
               "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
            },
            "location":{
               "name":"Yellow Jackets",
               "market":"Georgia Tech",
               "alias":"GT",
               "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
               "yardline":45
            }
         },
         "statistics":[
            {
               "stat_type":"pass",
               "attempt":1,
               "complete":1,
               "yards":4,
               "att_yards":0,
               "firstdown":0,
               "inside_20":0,
               "goaltogo":0,
               "blitz":0,
               "hurry":0,
               "knockdown":0,
               "on_target_throw":0,
               "batted_pass":0,
               "team":{
                  "name":"Seminoles",
                  "market":"Florida State",
                  "alias":"FSU",
                  "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
               },
               "player":{
                  "name":"DJ Uiagalelei",
                  "jersey":"04",
                  "id":"c38d1735-ee11-4711-8698-f5405e691365",
                  "position":"QB"
               }
            },
            {
               "stat_type":"defense",
               "category":"defense",
               "tackle":1,
               "def_target":0,
               "def_comp":0,
               "blitz":0,
               "hurry":0,
               "knockdown":0,
               "batted_pass":0,
               "def_yards_against":0,
               "interception_return":0,
               "int_return_play":0,
               "team":{
                  "name":"Yellow Jackets",
                  "market":"Georgia Tech",
                  "alias":"GT",
                  "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9"
               },
               "player":{
                  "name":"(Team)",
                  "id":"team"
               }
            },
            {
               "stat_type":"receive",
               "firstdown":0,
               "target":1,
               "reception":1,
               "yards":4,
               "yards_after_catch":4,
               "inside_20":0,
               "goaltogo":0,
               "catchable":0,
               "team":{
                  "name":"Seminoles",
                  "market":"Florida State",
                  "alias":"FSU",
                  "id":"1c792ab1-d640-48f2-b796-6a81c7b14eaf"
               },
               "player":{
                  "name":"Malik Benson",
                  "jersey":"10",
                  "id":"21262830-9c57-11ed-8980-13b49451ee41",
                  "position":"WR"
               }
            }
         ],
         "details":[
            {
               "category":"pass_completion",
               "description":"D.Uiagalelei pass complete.",
               "sequence":0,
               "yards":4,
               "alt_description":"",
               "start_location":{
                  "name":"Yellow Jackets",
                  "market":"Georgia Tech",
                  "alias":"GT",
                  "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
                  "yardline":49
               },
               "end_location":{
                  "name":"Yellow Jackets",
                  "market":"Georgia Tech",
                  "alias":"GT",
                  "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
                  "yardline":49
               },
               "players":[
                  {
                     "role":"pass",
                     "name":"DJ Uiagalelei",
                     "jersey":"04",
                     "id":"c38d1735-ee11-4711-8698-f5405e691365",
                     "position":"QB"
                  }
               ]
            },
            {
               "category":"pass_reception",
               "description":"Catch made by M.Benson for 4 yards.",
               "sequence":1,
               "yards":4,
               "result":"tackled",
               "alt_description":"",
               "start_location":{
                  "name":"Yellow Jackets",
                  "market":"Georgia Tech",
                  "alias":"GT",
                  "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
                  "yardline":49
               },
               "end_location":{
                  "name":"Yellow Jackets",
                  "market":"Georgia Tech",
                  "alias":"GT",
                  "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
                  "yardline":45
               },
               "players":[
                  {
                     "role":"catch",
                     "name":"Malik Benson",
                     "jersey":"10",
                     "id":"21262830-9c57-11ed-8980-13b49451ee41",
                     "position":"WR"
                  }
               ]
            },
            {
               "category":"tackle",
               "description":"Tackled by GT at GT 45.",
               "sequence":2,
               "alt_description":"",
               "start_location":{
                  "name":"Yellow Jackets",
                  "market":"Georgia Tech",
                  "alias":"GT",
                  "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
                  "yardline":45
               },
               "end_location":{
                  "name":"Yellow Jackets",
                  "market":"Georgia Tech",
                  "alias":"GT",
                  "id":"5ff038e1-6e3b-4cbe-90b8-751f783cd7a9",
                  "yardline":45
               },
               "players":[
                  {
                     "role":"tackle",
                     "name":"(Team)",
                     "id":"team"
                  }
               ]
            }
         ]
      }
   },
   "locale":"en",
   "metadata":{
      "league":"ncaafb",
      "match":"sd:match:fba71d07-56aa-4856-8f86-e51818f1362f,sr:match:49329347",
      "status":"inprogress",
      "event_type":"pass",
      "event_category":"",
      "locale":"en",
      "operation":"update",
      "version":"v7",
      "team":"sd:team:1c792ab1-d640-48f2-b796-6a81c7b14eaf"
   }
}
{
   "payload":{
      "game":{
         "id":"5f548f9c-c6a3-46e5-bf28-c6769bbf2522",
         "status":"inprogress",
         "coverage":"full",
         "game_type":"regular",
         "scheduled":"2023-07-24T17:30:00+00:00",
         "entry_mode":"LDE",
         "wx_temp":82,
         "wx_humidity":72,
         "wx_wind_speed":6,
         "wx_wind_direction":"S",
         "wx_condition":"Partly cloudy",
         "weather":"Partly cloudy Temp: 82 F, Humidity: 72%, Wind: S 6 mph",
         "quarter":1,
         "clock":"6:41",
         "sr_id":"sr:match:42030150",
         "summary":{
            "home":{
               "name":"Bengals",
               "market":"Cincinnati",
               "alias":"CIN",
               "used_timeouts":1,
               "remaining_timeouts":2,
               "id":"ad4ae08f-d808-42d5-a1e6-e9bc4e34d123",
               "points":7,
               "sr_id":"sr:competitor:4416"
            },
            "away":{
               "name":"Dolphins",
               "market":"Miami",
               "alias":"MIA",
               "used_timeouts":0,
               "remaining_timeouts":3,
               "id":"4809ecb0-abd3-451d-9c4a-92a90b83ca06",
               "points":0,
               "sr_id":"sr:competitor:4287"
            }
         }
      },
      "event":{
         "type":"play",
         "id":"f5e121b0-2a4b-11ee-a081-f5696882ff52",
         "sequence":1690221650797.0,
         "deleted":true,
         "play_type":"field_goal",
         "source":"SRUS",
         "period":{
            "id":"d9c919be-5270-48aa-a76d-edc4d4d87d03",
            "number":1,
            "sequence":1
         },
         "drive":{
            "id":"39817cc3-e485-457d-b193-f08d4fac107c",
            "sequence":2,
            "start_reason":"Kickoff",
            "end_reason":"UNKNOWN",
            "play_count":9,
            "duration":"4:01",
            "first_downs":3,
            "gain":68,
            "penalty_yards":0,
            "inside_20":true,
            "scoring_drive":true
         }
      }
   },
   "locale":"en",
   "metadata":{
      "league":"nfl",
      "match":"sd:match:5f548f9c-c6a3-46e5-bf28-c6769bbf2522,sr:match:42030150",
      "status":"inprogress",
      "event_type":"field_goal",
      "event_category":"scoring_play",
      "locale":"en",
      "operation":"delete",
      "version":"v7",
      "team":"sd:team:4809ecb0-abd3-451d-9c4a-92a90b83ca06,sr:competitor:4287"
   }
}


Endpoint Docs

Visit the links below for syntax structure, data samples, and data dictionaries for all NCAAFB Push feeds.

  • Push Events - Provides detailed, real-time information on every live game event.
  • Push Statistics - Provides detailed, real-time game stats at the team and player level for all live games.