Google News API 2.0
Using Google News API 2.0 you can scrape results from news.google.com without worrying about proxy rotation and data parsing. Each successful request will cost you 5 API credits.
You have to send a GET request to http://api.scrapingdog.com/google_news/v2
with the below-given parameters.
Google News API pricing is available here.
The difference between the legacy Google News API and Google News API 2.0 is that the new API is much faster, returns images as URLs instead of base64, and provides the date entity with the actual time instead of a duration, as in the legacy API.
Parameters
Scrapingdog Parameters
api_key
required
Your personal API key. Available on your dashboard Type: String
Search Query
query
This parameter specifies the query you want to search for, just like a standard Google News search. You can include operators such as site:
or when:
.
It cannot be used alongside publication_token
, story_token
, or topic_token
parameters.
Type: String
Geographic Location and Localization
country
Default Value - us
Type - String
language
Default Value - en
Type - String
Advanced Google News Parameters
topic_token
The parameter specifies the Google News topic token, which allows access to news results for a particular topic (e.g., "World," "Business," "Technology").
You can find this token in our JSON response or within the Google News URL, where it appears as a string of characters following /topics/
.
This parameter cannot be used alongside q
, story_token
, or publication_token
.
Type - String
publication_token
This parameter specifies the Google News publication token, allowing you to retrieve news results from a specific publisher (e.g., "CNN," "BBC," "The Guardian").
You can find the token in our JSON response or within the URL of a Google News page (it appears as a string of characters following /publications/
).
This parameter cannot be used together with q
, story_token
, or topic_token
.
Type - String
section_token
This parameter defines the Google News section token, which is used to access a subsection of a specific topic (e.g., "Business → Economy").
The token can be found in our JSON response or in the URL of a Google News page (where it appears as a string of characters following /sections/
).
This parameter can only be used in combination with the topic_token
or publication_token
parameters.
Type - String
so
This parameter defines the sorting method. Results can be sorted by relevance or date, with relevance being the default.
The supported values are:
0
– Relevance (default)1
– Date
This parameter can only be used in combination with the story_token
parameter.
Type - String
API Example
curl "https://api.scrapingdog.com/google_news/v2/?api_key=5eaa61a6e562fc52fe763tr516e4653&query=football&country=us"
import requests
api_key = "5eaa61a6e562fc52fe763tr516e4653"
url = "https://api.scrapingdog.com/google_news/v2"
params = {
"api_key": api_key,
"query": "football",
"country": "us"
}
response = requests.get(url, params=params)
if response.status_code == 200:
data = response.json()
print(data)
else:
print(f"Request failed with status code: {response.status_code}")
const axios = require('axios');
const api_key = '5eaa61a6e562fc52fe763tr516e4653';
const url = 'https://api.scrapingdog.com/google_news/v2';
const params = {
api_key: api_key,
query: 'football',
country: 'us'
};
axios
.get(url, { params: params })
.then(function (response) {
if (response.status === 200) {
const data = response.data;
console.log(data)
} else {
console.log('Request failed with status code: ' + response.status);
}
})
.catch(function (error) {
console.error('Error making the request: ' + error.message);
});
<?php
// Set the API key and request parameters
$api_key = '5eaa61a6e562fc52fe763tr516e4653';
$query = 'football';
$country = 'us';
// Set the API endpoint
$url = 'https://api.scrapingdog.com/google_news/v2/?api_key=' . $api_key . '&query=' . $query . '&country=' . $country;
// Initialize cURL session
$ch = curl_init($url);
// Set cURL options
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Execute the cURL request
$response = curl_exec($ch);
// Check if the request was successful
if ($response === false) {
echo 'cURL error: ' . curl_error($ch);
} else {
// Process the response data as needed
echo $response;
}
// Close the cURL session
curl_close($ch);
require 'net/http'
require 'uri'
# Set the API key and request parameters
api_key = '5eaa61a6e562fc52fe763tr516e4653'
query = 'football'
country = 'us'
# Construct the API endpoint URL
url = URI.parse("https://api.scrapingdog.com/google_news/v2/?api_key=#{api_key}&query=#{query}&country=#{country}")
# Create an HTTP GET request
request = Net::HTTP::Get.new(url)
# Create an HTTP client
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true # Enable SSL (https)
# Send the request and get the response
response = http.request(request)
# Check if the request was successful
if response.is_a?(Net::HTTPSuccess)
puts response.body # Process the response data as needed
else
puts "HTTP request failed with code: #{response.code}, message: #{response.message}"
end
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.IOException;
public class Main {
public static void main(String[] args) {
try {
// Set the API key and request parameters
String apiKey = "5eaa61a6e562fc52fe763tr516e4653";
String query = "football";
String country = "us";
// Construct the API endpoint URL
String apiUrl = "https://api.scrapingdog.com/google_news/v2/?api_key=" + apiKey
+ "&query=" + query
+ "&country=" + country
// Create a URL object from the API URL string
URL url = new URL(apiUrl);
// Open a connection to the URL
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// Set the request method to GET
connection.setRequestMethod("GET");
// Get the response code
int responseCode = connection.getResponseCode();
if (responseCode == 200) {
// Read the response from the connection
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = reader.readLine()) != null) {
response.append(inputLine);
}
reader.close();
// Process the response data as needed
System.out.println(response.toString());
} else {
System.out.println("HTTP request failed with response code: " + responseCode);
}
// Close the connection
connection.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
}
}
Response
{
"news_results": [
{
"title": "Who are the best QBs in college football? We asked people inside the sport",
"link": "https://www.espn.com/college-football/insider/story/_/id/44391723/college-football-best-quarterbacks-2025-arch-manning-carson-beck-drew-allar",
"thumbnail": "https://a3.espncdn.com/combiner/i?img=%2Fphoto%2F2024%2F1216%2Fr1428799_1296x729_16%2D9.jpg",
"source": "ESPN",
"authors": [
"Adam Rittenberg"
],
"date": "2025-03-27T12:11:00.000Z",
"rank": 1
},
{
"title": "NFL brings in WNBA star Caitlin Clark for flag football panel",
"stories": [
{
"title": "The NFL Continues To Become A Pansy Flag Football League With Latest Move",
"link": "https://www.outkick.com/sports/nfl-continues-become-pansy-flag-football-league-latest-move",
"thumbnail": "https://static.outkick.com/www.outkick.com/content/uploads/2025/03/nfl-33.jpg",
"source": "Outkick",
"date": "2025-03-26T12:34:22.000Z",
"rank": 2
},
{
"title": "BMO Stadium in L.A. will host Olympic flag football",
"link": "https://www.nbcsports.com/nfl/profootballtalk/rumor-mill/news/bmo-stadium-in-l-a-will-host-olympic-flag-football",
"thumbnail": "https://nbcsports.brightspotcdn.com/dims4/default/c915f68/2147483647/strip/false/crop/5568x3712+0+0/resize/1486x991!/quality/90/?url=https%3A%2F%2Fnbc-sports-production-nbc-sports.s3.us-east-1.amazonaws.com%2Fbrightspot%2Ff4%2F49%2Fb88cd3354cdbb43d384a66977183%2Fhttps-delivery-gettyimages.com%2Fdownloads%2F2181060097",
"source": "NBC Sports",
"date": "2025-03-27T16:36:42.000Z",
"rank": 2
},
{
"title": "NFL Enlists Caitlin Clark to Help Shape Flag Football’s Future",
"link": "https://frontofficesports.com/nfl-enlists-caitlin-clark-to-help-shape-flag-footballs-future/",
"thumbnail": "https://frontofficesports.com/wp-content/uploads/2025/03/USATSI_24792022_168416384_lowres-scaled-e1743025325257.jpg?quality=100",
"source": "Front Office Sports",
"date": "2025-03-26T21:51:22.000Z",
"rank": 2
}
]
},
{
"title": "Florida State football announces additional renovations to Doak Campbell Stadium",
"link": "https://www.tomahawknation.com/florida-state-football-fsu-seminoles-college-cfb-acc-norvell-team-roster-schedule-game/2025/3/27/24395218/michael-alford-doak-campbell-stadium-mike-norvell-renovations-alabama-august",
"thumbnail": "https://cdn.vox-cdn.com/thumbor/TFTACPe3tEfJW1eGWNXAk_c5ldo=/1400x1400/filters:format(jpeg)/cdn.vox-cdn.com/uploads/chorus_asset/file/25928970/usa_today_21703521.jpg",
"source": "Tomahawk Nation",
"authors": [
"Jordan Silversmith"
],
"date": "2025-03-27T15:48:31.000Z",
"rank": 3
},
{
"title": "News about Michigan football",
"stories": [
{
"title": "How effects of Michigan hacking are rippling nationwide",
"link": "https://www.espn.com/college-football/story/_/id/44418190/how-hacking-scandal-former-u-m-coach-ripple-nationwide",
"thumbnail": "https://a.espncdn.com/photo/2023/0118/r1119076_1296x729_16-9.jpg",
"source": "ESPN",
"date": "2025-03-27T12:00:00.000Z",
"rank": 4
},
{
"title": "Bryce Underwood is turning heads but another Michigan football freshman has 'flashed'",
"link": "https://gbmwolverine.com/bryce-underwood-is-turning-heads-but-another-michigan-football-freshman-has-flashed-01jqbykgqta1",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,x_0,y_0,w_3969,h_2232/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/ImagnImages/mmsport/148/01jqc0mbxwrtbc9h70g6.jpg",
"source": "GBMWolverine",
"date": "2025-03-27T14:45:19.000Z",
"rank": 4
},
{
"title": "Why Michigan football's 2025 spring game will not be aired live on TV",
"link": "https://www.freep.com/story/sports/college/university-michigan/wolverines/2025/03/26/michigan-football-spring-game-tv/82674422007/",
"thumbnail": "https://www.freep.com/gcdn/authoring/authoring-images/2024/04/20/PDTF/73398332007-04202024-springgameextras-23.jpg?crop=3696,2080,x0,y192&width=660&height=371&format=pjpg&auto=webp",
"source": "Detroit Free Press",
"date": "2025-03-26T20:13:20.000Z",
"rank": 4
}
]
},
{
"title": "Football in India – Is the world’s most popular sport conquering its final frontier? - The Athletic",
"link": "https://www.nytimes.com/athletic/6210144/2025/03/27/football-india-popularity-super-league/",
"thumbnail": "https://static01.nyt.com/athletic/uploads/wp/2025/03/22064636/Football-in-India-Lede-scaled.jpg?width=1200&height=900&fit=cover",
"source": "The Athletic",
"authors": "",
"date": "2025-03-27T14:55:03.000Z",
"rank": 5
},
{
"title": "5 Ohio State football players who helped their NFL Draft stock at pro day",
"link": "https://www.cleveland.com/osu/2025/03/5-ohio-state-football-players-who-helped-their-nfl-draft-stock-at-pro-day.html?outputType=amp",
"thumbnail": "https://www.cleveland.com/resizer/v2/SNDACTQKENG4NFO3HI52NNO4HQ.jpg?auth=5f331f82e364e1dd13d1b325e9a98e4040fb22e9e857740513c5aae55f3957e5&width=1280&quality=90",
"source": "cleveland.com",
"authors": [
"Stephen Means"
],
"date": "2025-03-27T10:00:00.000Z",
"rank": 6
},
{
"title": "College Football Coach Rankings: Greg McElroy releases Top 25 head coaches",
"link": "https://www.on3.com/news/college-football-coach-rankings-greg-mcelroy-releases-top-25-head-coaches/",
"thumbnail": "https://on3static.com/cdn-cgi/image/height=417,width=795,quality=90,fit=cover,gravity=0.5x0.5/uploads/dev/assets/cms/2025/03/27090159/coaches-afi5.png",
"source": "On3.com",
"authors": [
"Thomas Goldkamp"
],
"date": "2025-03-27T14:09:41.000Z",
"rank": 7
},
{
"title": "Alabama football recruiting: Five-star Jorden Edmonds commits as Crimson Tide land No. 1 CB in 2026 class",
"link": "https://www.cbssports.com/college-football/news/alabama-football-recruiting-five-star-jorden-edmonds-commits-as-crimson-tide-land-no-1-cb-in-2026-class/",
"thumbnail": "https://sportshub.cbsistatic.com/i/r/2025/03/26/42ebce33-9e50-4803-9ebb-981a60094e18/thumbnail/640x360/c0292260cc58d38bd6a12bd766acde61/jorden-edmonds.jpg",
"source": "CBS Sports",
"authors": [
"Shehan Jeyarajah"
],
"date": "2025-03-26T21:50:00.000Z",
"rank": 8
},
{
"title": "Iowa football begins spring practice",
"stories": [
{
"title": "Iowa Football Releases New Depth Chart For Spring 2025",
"link": "https://iowa.rivals.com/news/iowa-football-releases-new-depth-chart-for-spring-2025",
"thumbnail": "https://images.rivals.com/image/upload/f_auto,q_auto,t_large/xiofgny8fvltqjoowulj",
"source": "HawkeyeReport",
"date": "2025-03-26T22:46:23.000Z",
"rank": 9
},
{
"title": "Iowa Football: Pro Day Recap",
"link": "https://www.blackheartgoldpants.com/2025/3/27/24395144/iowa-hawkeye-football-nfl-draft-pro-day-recap-nick-jackson-luke-lachey-tyler-elsbury-spencer-petras",
"thumbnail": "https://cdn.vox-cdn.com/thumbor/AwNpCQlIqiu7z0RUg9krhJE6ypI=/0x430:6000x3571/fit-in/1200x630/cdn.vox-cdn.com/uploads/chorus_asset/file/25928991/usa_today_24878108.jpg",
"source": "Black Heart Gold Pants",
"date": "2025-03-27T16:45:28.000Z",
"rank": 9
},
{
"title": "Leistikow's 5 thoughts: A bevy of quarterbacks, receivers as Iowa football's spring begins",
"link": "https://www.hawkcentral.com/story/sports/college/iowa/football/2025/03/27/iowa-football-roster-spring-mark-gronowski-quarterbacks-kirk-ferentz-ben-kueter-john-nestor/82636940007/",
"thumbnail": "https://www.hawkcentral.com/gcdn/authoring/authoring-images/2025/03/26/PIOC/82677425007-20250326-kirk-ferentz-0007.JPG?crop=5489,3088,x0,y187&width=660&height=371&format=pjpg&auto=webp",
"source": "Hawk Central",
"date": "2025-03-27T11:42:26.000Z",
"rank": 9
}
]
},
{
"title": "NWSL Boston team announces ‘Boston Legacy Football Club’ as new name",
"link": "https://www.boston.com/sports/sports-news/2025/03/26/nwsl-boston-team-announces-boston-legacy-football-club-as-new-name/?amp=1",
"thumbnail": "https://bdc2020.o0bc.com/wp-content/uploads/2025/03/Boston-Legacy-Football-Club-Founders-wearing-old-Bos-Nation-Merch-1-67e3f219cfc01-scaled.jpeg",
"source": "Boston.com",
"authors": [
"Hayden Bird"
],
"date": "2025-03-26T13:28:00.000Z",
"rank": 10
},
{
"title": "WMU Football Spring Showcase set for April 12",
"link": "https://wmubroncos.com/news/2025/3/27/wmu-football-spring-showcase-set-for-april-12.aspx",
"thumbnail": "https://wmubroncos.com/images/2025/3/27/2025_Spring_Showcase_.jpg",
"source": "WMUBroncos.com",
"authors": "",
"date": "2025-03-27T16:36:18.000Z",
"rank": 11
},
{
"title": "Spring Game Fan Details Announced",
"link": "https://vucommodores.com/spring-game-fan-details-announced/",
"thumbnail": "https://vucommodores.com/wp-content/uploads/2025/03/amt-8fe3efbb1a5f88822a0f9c4a5d68f17245d8ed18-20250304BRFBHardHatTour039.jpg",
"source": "Vanderbilt University",
"authors": "",
"date": "2025-03-27T17:39:28.000Z",
"rank": 12
},
{
"title": "United Football League, Syracuse University Enter Sport Analytics Agreement",
"link": "https://news.syr.edu/blog/2025/03/27/united-football-league-syracuse-university-enter-sport-analytics-agreement/",
"thumbnail": "https://news.syr.edu/wp-content/uploads/2025/03/Hero-for-SU-News-1-564x400.jpg",
"source": "Syracuse University News",
"authors": [
"Matt Michael"
],
"date": "2025-03-27T14:29:28.000Z",
"rank": 13
},
{
"title": "ACC Football to Own Friday Nights this Fall",
"link": "https://theacc.com/news/2025/3/27/acc-football-to-own-friday-nights-this-fall.aspx",
"thumbnail": "http://theacc.com/images/2025/3/27/24_25_FBL_FridayFootball_1920.jpg?preset=large.storyimage",
"source": "The ACC",
"authors": "",
"date": "2025-03-27T18:04:39.000Z",
"rank": 14
},
{
"title": "FAMU football first spring scrimmage: Three things the Rattlers will address on Thursday",
"link": "https://www.tallahassee.com/story/sports/college/famu/2025/03/26/famu-rattlers-football-to-have-first-spring-scrimmage-thursday-what-to-expect/82564454007/",
"thumbnail": "https://www.tallahassee.com/gcdn/authoring/authoring-images/2025/03/07/PTAL/81946088007-dsc-5460.JPG?crop=5567,3133,x0,y289&width=660&height=371&format=pjpg&auto=webp",
"source": "Tallahassee Democrat",
"authors": [
"Gerald Monroe Thomas"
],
"date": "2025-03-27T15:17:38.000Z",
"rank": 15
},
{
"title": "Fanetti and Klam Named to U.S. Women's Flag Football National Team",
"link": "https://kuseahawks.com/news/2025/3/27/fanetti-and-klam-named-to-us-womens-flag-football-national-team.aspx",
"thumbnail": "https://kuseahawks.com/images/2025/3/27/US_National_Team_-_Story.png",
"source": "Keiser University Athletics",
"authors": "",
"date": "2025-03-27T15:27:08.000Z",
"rank": 16
},
{
"title": "Auburn football: What AU's coaches have already seen from Jackson Arnold",
"link": "https://www.montgomeryadvertiser.com/story/sports/college/auburn/2025/03/25/auburn-football-jackson-arnold-hugh-freeze-kent-austin/82593604007/",
"thumbnail": "https://www.montgomeryadvertiser.com/gcdn/authoring/authoring-images/2025/03/25/PMOY/82660302007-20250325-fb-spring-practice-ap-2049.jpg?crop=2399,1350,x0,y160&width=660&height=371&format=pjpg&auto=webp",
"source": "Montgomery Advertiser",
"authors": [
"Adam Cole"
],
"date": "2025-03-27T16:34:55.000Z",
"rank": 17
},
{
"title": "Takeaways from UNC football's 2025 Pro Day ahead of NFL Draft -",
"link": "https://www.dailytarheel.com/article/2025/03/sports-football-pro-day-march-2025",
"thumbnail": "https://snworksceo.imgix.net/dth/884cf308-c33a-404b-821f-f94e78e81302.sized-1000x1000.jpg?w=1000",
"source": "The Daily Tar Heel",
"authors": "",
"date": "2025-03-27T15:51:46.000Z",
"rank": 18
},
{
"title": "Fallout at Stanford: Troy Taylor out, staff stunned, Andrew Luck goes into decision mode with options to weigh",
"link": "https://www.cbssports.com/college-football/news/fallout-at-stanford-troy-taylor-out-staff-stunned-andrew-luck-goes-into-decision-mode-with-options-to-weigh/",
"thumbnail": "https://sportshub.cbsistatic.com/i/r/2025/03/27/137ddd52-2cce-4dd8-ac95-8fa4fbb00992/thumbnail/640x360/9f21fd90937fe057c000c013670906a9/andrewluck.jpg",
"source": "CBS Sports",
"authors": "",
"date": "2025-03-27T15:03:00.000Z",
"rank": 19
},
{
"title": "The Air Jordan 1 Low “Gold Toe” Is Now A Football Cleat",
"link": "https://houseofheat.co/jordan/air-jordan-1-low-td-gold-toe-football-cleat-fj6245-701",
"thumbnail": "https://cdn.sanity.io/images/pu5wtzfc/production/8f736986c836927cfee844f645d00f9a605c3327-2000x1250.jpg/Air-Jordan-1-Low-TD-Gold-Toe-FJ6245-701-5.jpg?w=320&h=200&auto=format",
"source": "House of Heat°",
"authors": [
"Jovani Hernandez"
],
"date": "2025-03-27T18:41:53.000Z",
"rank": 20
},
{
"title": "LIVE: Barcelona vs Osasuna – LaLiga",
"link": "https://www.aljazeera.com/sports/liveblog/2025/3/27/live-barcelona-vs-osasuna-laliga",
"thumbnail": "https://www.aljazeera.com/wp-content/uploads/2025/03/2025-03-08T193556Z_166515111_UP1EL381IFUWA_RTRMADP_3_SOCCER-SPAIN-BAR-OSA-REPORT-1743099382.jpg?resize=1920%2C1440",
"source": "Al Jazeera English",
"authors": [
"Kevin Hand"
],
"date": "2025-03-27T18:22:30.000Z",
"rank": 21
},
{
"title": "FAMU football's first spring scrimmage provides first game-like evaluation for 2025 | Takeaways",
"link": "https://www.tallahassee.com/story/sports/college/famu/2025/03/27/famu-rattlers-football-has-first-scrimmage-spring-2025-camp-takeaways-sports/82564451007/",
"thumbnail": "https://www.tallahassee.com/gcdn/authoring/authoring-images/2025/03/07/PTAL/81946125007-dsc-5487.JPG?crop=5567,3132,x0,y0&width=660&height=371&format=pjpg&auto=webp",
"source": "Tallahassee Democrat",
"authors": [
"Gerald Monroe Thomas"
],
"date": "2025-03-27T16:27:17.000Z",
"rank": 22
},
{
"title": "Clay: More TDs for McBride and 40 more 2025 fantasy football projections takeaways",
"link": "https://www.espn.com/fantasy/football/story/_/id/44417717/2025-fantasy-football-projections-draft-trends-carry-target-shares",
"thumbnail": "https://a.espncdn.com/photo/2025/0326/r1469749_1296x729_16-9.jpg",
"source": "ESPN",
"authors": [
"Mike Clay"
],
"date": "2025-03-27T11:56:00.000Z",
"rank": 23
},
{
"title": "For Notre Dame and Marcus Freeman, writing a different ending is the final step",
"link": "https://www.espn.com/college-football/story/_/id/44405419/notre-dame-college-football-marcus-freeman-focused-final-step",
"thumbnail": "https://a.espncdn.com/combiner/i?img=%2Fphoto%2F2025%2F0325%2Fr1469245_1296x729_16%2D9.jpg",
"source": "ESPN",
"authors": [
"Pete Thamel"
],
"date": "2025-03-27T12:00:00.000Z",
"rank": 24
},
{
"title": "AIC football player invited to NFL Pro Day",
"link": "https://www.westernmassnews.com/2025/03/27/aic-football-player-invited-nfl-pro-day/",
"thumbnail": "https://gray-wggb-prod.gtv-cdn.com/resizer/v2/FPAIUQYXGNBSVHZBP2MYMKDBAQ.jpg?auth=516fed9fe808072acd098c1eb54699e43ce5efd96fbf0f0f53a1ee98a46b56ce&width=1200&height=600&smart=true",
"source": "Western Massachusetts News",
"authors": [
"Regan Stoddard",
"Ryan Trowbridge"
],
"date": "2025-03-27T17:11:00.000Z",
"rank": 25
},
{
"title": "Louisville football game vs. James Madison at L&N Stadium moved to new date. What to know",
"link": "https://www.courier-journal.com/story/sports/college/louisville/2025/03/27/louisville-football-schedule-2025-uofl-james-madison-game-ln-stadium-kentucky/82689412007/",
"thumbnail": "https://www.courier-journal.com/gcdn/authoring/authoring-images/2025/03/04/PLOU/81259509007-uof-l-practice-09-sam.jpg?crop=4499,2531,x0,y0&width=660&height=371&format=pjpg&auto=webp",
"source": "Courier Journal",
"authors": [
"Alexis Cubit"
],
"date": "2025-03-27T18:03:26.000Z",
"rank": 26
},
{
"title": "Flag football: See this season's action from around Section 1 in Lower Hudson Valley",
"link": "https://www.lohud.com/story/sports/high-school/2025/03/27/section-1-high-school-flag-football-westchester-rockland-putnam-ny-2025-season/82671269007/",
"thumbnail": "https://www.lohud.com/gcdn/authoring/authoring-images/2025/03/27/PWES/82682929007-fb-032626-putvhhff-01.jpg?crop=4151,2335,x0,y147&width=660&height=371&format=pjpg&auto=webp",
"source": "The Journal News",
"authors": "",
"date": "2025-03-27T17:26:15.000Z",
"rank": 27
},
{
"title": "Rock Hill High’s Randy Birch will not return as football coach. Here’s what we know",
"link": "https://amp.heraldonline.com/sports/article302872029.html",
"thumbnail": "https://www.heraldonline.com/sports/twpi4u/picture288621503/alternates/LANDSCAPE_1140/kimball_rhhspractice3_52124.jpg",
"source": "Rock Hill Herald",
"authors": [
"Langston Wertz Jr."
],
"date": "2025-03-26T21:36:00.000Z",
"rank": 28
},
{
"title": "Georgia football’s Nazir Stackhouse and his long struggle with narcolepsy entering NFL",
"link": "https://www.nytimes.com/athletic/6227200/2025/03/26/nazir-stackhouse-nfl-draft-georgia-football/",
"thumbnail": "https://static01.nyt.com/athletic/uploads/wp/2025/03/24194244/GettyImages-1777338593-scaled-e1742859839522.jpg",
"source": "The Athletic",
"authors": [
"Seth Emerson"
],
"date": "2025-03-27T15:36:00.000Z",
"rank": 29
},
{
"title": "Does Kalen DeBoer want A Day scrimmage against another team? What Alabama football coach said",
"link": "https://www.tuscaloosanews.com/story/sports/college/football/2025/03/27/does-kalen-deboer-want-alabama-football-a-day-scrimmage-against-another-team/82575776007/",
"thumbnail": "https://www.tuscaloosanews.com/gcdn/authoring/authoring-images/2024/11/30/NTTN/76677985007-tus-iron-bowl-2024-gc-6144.JPG?crop=2602,1465,x0,y301&width=660&height=371&format=pjpg&auto=webp",
"source": "Tuscaloosa Magazine",
"authors": [
"Colin Gay"
],
"date": "2025-03-27T17:04:14.000Z",
"rank": 30
},
{
"title": "How did Ty Simpson, Alabama football quarterbacks do in first spring scrimmage? What Kalen DeBoer said",
"link": "https://www.tuscaloosanews.com/story/sports/college/football/2025/03/27/ty-simpson-alabama-football-quarterbacks-did-in-first-spring-scrimmage-kalen-deboer-keelon-russell/82687163007/",
"thumbnail": "https://www.tuscaloosanews.com/gcdn/authoring/authoring-images/2025/03/05/NTTN/81620646007-tus-alabama-practice-spring-2025-gc-4051.jpg?crop=3735,2102,x0,y209&width=660&height=371&format=pjpg&auto=webp",
"source": "Tuscaloosa Magazine",
"authors": [
"Colin Gay"
],
"date": "2025-03-27T16:37:27.000Z",
"rank": 31
},
{
"title": "Vikings Partner with 51 Minnesota High Schools to Launch Girls Flag Football League",
"link": "https://www.vikings.com/news/minnesota-high-schools-girls-flag-football-league",
"thumbnail": "https://static.clubs.nfl.com/image/upload/t_editorial_landscape_mobile/f_png/vikings/nt3bdviner38laqwjvic.png",
"source": "Vikings.com",
"authors": [
"Lindsey Young"
],
"date": "2025-03-25T13:03:21.000Z",
"rank": 32
},
{
"title": "Legendary college football coach Urban Meyer launches new youth program with the Sarasota Police Department",
"link": "https://www.mysuncoast.com/2025/03/27/legendary-college-football-coach-urban-meyer-launches-new-youth-program-with-sarasota-police-department/?outputType=amp",
"thumbnail": "https://gray-wwsb-prod.gtv-cdn.com/resizer/v2/HMYG3HDWDRG6FOCL7N6GWP5TQ4.png?auth=b3db4957ee92fbb122466232f8ca9f09b6090771c750f43c960d684ad83a2d0a&width=1200&height=600&smart=true",
"source": "WWSB",
"authors": [
"Sophia Ellen Vitello"
],
"date": "2025-03-27T17:13:00.000Z",
"rank": 33
},
{
"title": "Buckle up for 16 months of wall-to-wall football (just don’t tell the players) - The Athletic",
"link": "https://www.nytimes.com/athletic/6229828/2025/03/27/football-fatigue-world-cup/",
"thumbnail": "https://static01.nyt.com/athletic/uploads/wp/2025/03/25134615/haaaa-main-scaled-e1742924812535.jpg",
"source": "The Athletic",
"authors": [
"Steve Madeley"
],
"date": "2025-03-27T15:46:05.000Z",
"rank": 34
},
{
"title": "'Such a fairy-tale ending': Inside Brandon Graham's final, turbulent, triumphant season as an Eagle",
"link": "https://www.espn.com/nfl/story/_/id/44414635/inside-brandon-graham-final-season-phildelphia-eagles",
"thumbnail": "https://a4.espncdn.com/combiner/i?img=%2Fphoto%2F2025%2F0326%2Fr1469531_1296x729_16%2D9.jpg",
"source": "ESPN",
"authors": [
"Tim McManus"
],
"date": "2025-03-27T11:00:00.000Z",
"rank": 35
},
{
"title": "'Nobody cares': Arizona State football coach Kenny Dillingham's strange form of motivation",
"link": "https://www.azcentral.com/story/sports/college/asu/2025/03/25/arizona-state-football-coach-kenny-dillingham-uses-queen-hit-for-motivation/82657368007/",
"thumbnail": "https://www.azcentral.com/gcdn/authoring/authoring-images/2025/01/01/PPHX/77380209007-peach-bowl-12.JPG?crop=3397,1912,x0,y125&width=660&height=371&format=pjpg&auto=webp",
"source": "The Arizona Republic",
"authors": [
"Michelle Gardner"
],
"date": "2025-03-27T17:54:39.000Z",
"rank": 36
},
{
"title": "Why Alabama Football is Changing the A-Day Format",
"link": "https://www.si.com/college/alabama/football/why-alabama-football-is-changing-the-a-day-format-01jqc92xgbqj",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_3600,h_2025,x_0,y_0/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/bama_central/01jqc9p3pke72pakygbm.jpg",
"source": "Sports Illustrated",
"authors": [
"Joe Gaither"
],
"date": "2025-03-27T17:45:43.000Z",
"rank": 37
},
{
"title": "Fantasy football players, rejoice — this might be the best RB NFL Draft class of all time",
"link": "https://sports.yahoo.com/fantasy/article/fantasy-football-players-rejoice--this-might-be-the-best-rb-nfl-draft-class-of-all-time-184529949.html",
"thumbnail": "https://s.yimg.com/ny/api/res/1.2/wXCGr5eusVJpUyoZKdfu9Q--/YXBwaWQ9aGlnaGxhbmRlcjt3PTEyMDA7aD04MDA7Y2Y9d2VicA--/https://s.yimg.com/os/creatr-uploaded-images/2025-03/9d50c910-f6dc-11ef-be6a-6f061d6f5f2b",
"source": "Yahoo Sports",
"authors": "",
"date": "2025-03-27T16:22:53.000Z",
"rank": 38
},
{
"title": "Former star WR Justin Blackmon to be added to Cowboy Football Ring of Honor",
"link": "https://www.koco.com/article/sports-justin-blackmon-cowboy-football-ring-of-honor-oklahoma-state/64310623",
"thumbnail": "https://kubrick.htvapps.com/htv-prod-media.s3.amazonaws.com/images/ap-justin-blackmon-67e585f29ffcb.jpg?crop=1.00xw:0.847xh;0,0&resize=1200:*",
"source": "KOCO Oklahoma City",
"authors": [
"Jonathan Greco"
],
"date": "2025-03-27T17:51:00.000Z",
"rank": 39
},
{
"title": "Penn State football Pro Day: Will Abdul Carter shine like a No. 1 NFL Draft pick?",
"link": "https://www.ydr.com/story/sports/college/penn-state/football/2025/03/27/previewing-abdul-carter-tyler-warren-at-penn-state-football-pro-day/82638420007/",
"thumbnail": "https://www.ydr.com/gcdn/authoring/authoring-images/2025/03/25/USAT/82657394007-usatsi-25042400.jpg?crop=2952,1661,x0,y0&width=660&height=371&format=pjpg&auto=webp",
"source": "York Daily Record",
"authors": [
"Frank Bodani"
],
"date": "2025-03-27T16:18:45.000Z",
"rank": 40
},
{
"title": "Why Indianapolis' Lucas Oil Stadium is the only football stadium hosting a March Madness Regional in 2025",
"link": "https://www.cbssports.com/college-basketball/news/why-indianapolis-lucas-oil-stadium-is-the-only-football-stadium-hosting-a-march-madness-regional-in-2025/amp/",
"thumbnail": "https://sportshub.cbsistatic.com/i/r/2025/03/27/9ebaed1c-f303-4afa-b7d2-cef3976244b7/thumbnail/1200x675/71ebd377d13c60e4aacbef29fc161b14/gettyimages-82538000-1-1.jpg",
"source": "CBS Sports",
"authors": [
"Chris Bengel"
],
"date": "2025-03-27T17:25:00.000Z",
"rank": 41
},
{
"title": "UNCP football releases 2025 schedule",
"link": "https://www.robesonian.com/sports/316197/uncp-football-releases-2025-schedule/amp",
"thumbnail": "https://www.robesonian.com/wp-content/uploads/2025/03/131396413_web1_lead-uncp-wingate-2.jpg",
"source": "The Robesonian",
"authors": "",
"date": "2025-03-27T18:00:00.000Z",
"rank": 42
},
{
"title": "Prosecutors seek 15 years for ex-Spanish football president Villar",
"link": "https://www.aljazeera.com/amp/sports/2025/3/27/prosecutors-want-15-years-for-ex-spanish-football-president-villar",
"thumbnail": "https://www.aljazeera.com/wp-content/uploads/2025/03/2017-08-01T174826Z_772681515_RC124ADCD890_RTRMADP_3_SOCCER-SPAIN-VILLAR-1743073548.jpg?resize=1200%2C630",
"source": "Al Jazeera English",
"authors": "",
"date": "2025-03-27T11:37:30.000Z",
"rank": 43
},
{
"title": "Stanford football coaching candidates: Who could replace Troy Taylor? - The Athletic",
"link": "https://www.nytimes.com/athletic/6233666/2025/03/26/stanford-cardinal-football-coaching-search-candidates/",
"thumbnail": "https://static01.nyt.com/athletic/uploads/wp/2025/03/26163252/USATSI_24895644-scaled-e1743021231465.jpg",
"source": "The Athletic",
"authors": [
"Bruce Feldman"
],
"date": "2025-03-26T21:18:07.000Z",
"rank": 44
},
{
"title": "Wilson III Returns For Gators’ 2025 Football Season",
"link": "https://www.wruf.com/headlines/2025/03/27/eugene-wilson-iii-returns-for-gators-2025-football-season/",
"thumbnail": "https://www.wruf.com/wp-content/uploads/2025/03/USATSI_24538483-660x330.jpg",
"source": "WRUF",
"authors": [
"Jalyn Garcia"
],
"date": "2025-03-27T14:33:01.000Z",
"rank": 45
},
{
"title": "Position Change Update: LSU Football Running Back Turned Quarterback is 'Electric'",
"link": "https://www.si.com/college/lsu/football/position-change-update-lsu-football-running-back-turned-quarterback-is-electric-01jqc3mkm9z9",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_3416,h_1921,x_0,y_99/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/lsu_country/01jkyjcd368nt4mch0av.jpg",
"source": "Sports Illustrated",
"authors": [
"Zack Nagy"
],
"date": "2025-03-27T15:55:27.000Z",
"rank": 46
},
{
"title": "Justin Blackmon to Be Inducted into OSU’s Cowboy Football Ring of Honor",
"link": "https://www.news9.com/story/67e587eb6106a83f2650d4af/justin-blackmon-to-be-inducted-into-osu-s-cowboy-football-ring-of-honor",
"thumbnail": "https://images.news9.com/kotv/production/2011/May/26/how-to-vote-justin-blackmon-for-national-player-of-the-week.1306429174000-0.jpeg?w=1050&h=590.617&fit=crop",
"source": "news9.com KWTV",
"authors": "",
"date": "2025-03-27T17:20:09.000Z",
"rank": 47
},
{
"title": "Football’s Golden Flake A-Day Details Announced",
"link": "https://rolltide.com/news/2025/3/26/footballs-golden-flake-a-day-details-announced",
"thumbnail": "https://images.sidearmdev.com/resize?url=https%3A%2F%2Fdxbhsrqyrr690.cloudfront.net%2Fsidearm.nextgen.sites%2Frolltide.com%2Fimages%2F2025%2F3%2F26%2FA-_Day_Info.jpg&height=300&type=webp",
"source": "rolltide.com",
"authors": "",
"date": "2025-03-26T14:17:09.000Z",
"rank": 48
},
{
"title": "Beyond The Elite: Financial Architectures For The Ascension Of Women’s Football Clubs",
"link": "https://www.forbes.com/sites/priyaoberoi/2025/03/27/beyond-the-elite-financial-architectures-for-the-ascension-of-womens-football-clubs/",
"thumbnail": "https://specials-images.forbesimg.com/imageserve/67e187cc292c080c2a5fe84b/960x0.jpg",
"source": "Forbes",
"authors": [
"Priya Oberoi"
],
"date": "2025-03-27T18:16:12.000Z",
"rank": 49
},
{
"title": "Photos: South Carolina spring football practice from March 27",
"link": "https://www.thestate.com/sports/college/university-of-south-carolina/usc-football/article302930499.html",
"thumbnail": "https://www.thestate.com/latest-news/mu25m8/picture301500524/alternates/LANDSCAPE_400/Boaz%20Stanley003.JPG",
"source": "The State",
"authors": "",
"date": "2025-03-27T17:21:04.000Z",
"rank": 50
},
{
"title": "The Scoop - Tuesday March 25, 2025",
"link": "https://footballscoop.com/thescoop/the-scoop-tuesday-march-25-2025",
"thumbnail": "https://footballscoop.com/.image/t_share/MjA3NzUzMTY2MDYwNTI5NDc3/coachcomm-july-2024.jpg",
"source": "Footballscoop",
"authors": [
"Doug Samuels"
],
"date": "2025-03-25T13:13:24.000Z",
"rank": 51
},
{
"title": "Rock Hill High School head football coach will not return next fall",
"link": "https://www.qcnews.com/news/rock-hill-high-school-head-football-coach-will-not-return-next-fall/",
"thumbnail": "https://www.qcnews.com/wp-content/uploads/sites/109/2025/02/GettyImages-1181426311.jpg?w=2560&h=1440&crop=1",
"source": "Fox 46 Charlotte",
"authors": [
"Bailey Striepling"
],
"date": "2025-03-27T15:36:32.000Z",
"rank": 52
},
{
"title": "Iowa football RB Kaleb Johnson sent to premier NFL franchise in newest mock draft",
"link": "https://hawkeyeswire.usatoday.com/story/sports/college/hawkeyes/football/2025/03/27/nfl-draft-dallas-cowboys-iowa-football-kaleb-johnson/82691995007/",
"thumbnail": "https://hawkeyeswire.usatoday.com/gcdn/authoring/authoring-images/2024/09/07/PDEM/75124904007-usatsi-24178235.jpg?crop=7761,4367,x0,y258&width=660&height=371&format=pjpg&auto=webp",
"source": "Hawkeyes Wire",
"authors": [
"Riley Donald"
],
"date": "2025-03-27T17:57:12.000Z",
"rank": 53
},
{
"title": "BYU Football Cheers On Sweet 16 Hoops Squad With Tater Tots",
"link": "https://kslsports.com/ncaa/byu-basketball/byu-football-tater-tots/543496",
"thumbnail": "https://kslsports.com/wp-content/uploads/2025/03/byu-football-kalani-sitake-byu-basketball-tater-tots.jpg",
"source": "KSL Sports",
"authors": [
"Mitch Harper"
],
"date": "2025-03-27T05:49:11.000Z",
"rank": 54
},
{
"title": "WATCH: Rodriguez shares spring football update, discusses portal needs",
"link": "https://www.wboy.com/goldandbluenation/wvu-football/watch-rodriguez-shares-spring-football-update-discusses-portal-needs/amp/",
"thumbnail": "https://www.wboy.com/wp-content/uploads/sites/43/2025/03/rich-rodriguez-.jpg?strip=1",
"source": "WBOY.com",
"authors": [
"Nick Farrell"
],
"date": "2025-03-27T18:13:25.000Z",
"rank": 55
},
{
"title": "Bishop McGuinness hires Avery McMullin as head football coach",
"link": "https://www.wral.com/story/bishop-mcguinness-hires-avery-mcmullin-as-head-football-coach/21931457/",
"thumbnail": "https://wwwcache.highschoolot.com/asset/content/football/2025/03/27/21931458/Untitled-DMID1-66fp0q744-480x480.jpg?w=640&h=360",
"source": "WRAL News",
"authors": "",
"date": "2025-03-27T18:48:33.000Z",
"rank": 56
},
{
"title": "POB Flag Football stars honored by NY Jets",
"link": "https://www.midislandtimes.com/articles/pob-flag-football-stars-honored-by-ny-jets/",
"thumbnail": "https://www.midislandtimes.com/wp-content/uploads/2025/03/1-flag0328-300x235.jpg",
"source": "The Mid Island Times",
"authors": "",
"date": "2025-03-27T18:10:13.000Z",
"rank": 57
},
{
"title": "Star power vs. inexperience? Breaking down strengths and weakness of ever WTE Top 25 team",
"link": "https://www.espn.com/college-football/story/_/id/44343188/college-football-2025-stength-weakness-top-25",
"thumbnail": "https://a1.espncdn.com/combiner/i?img=%2Fphoto%2F2025%2F0324%2Fr1468603_1296x729_16%2D9.jpg",
"source": "ESPN",
"authors": "",
"date": "2025-03-25T12:00:00.000Z",
"rank": 58
},
{
"title": "Florida football hosts NFL Pro Day Thursday. See our best photos!",
"link": "https://www.gainesville.com/picture-gallery/sports/college/sec/2025/03/27/florida-football-hosts-nfl-pro-day-thursday-see-our-best-photos/82693329007/",
"thumbnail": "https://www.gainesville.com/gcdn/authoring/authoring-images/2025/03/27/NTGS/82692669007-flgai-032725-uf-pro-day-0971-chris-watkins.jpg?width=700&height=467&fit=crop&format=pjpg&auto=webp",
"source": "Gainesville Sun",
"authors": [
"Chris Watkins"
],
"date": "2025-03-27T18:51:54.000Z",
"rank": 59
},
{
"title": "Tennessee State University Names Reggie Barlow as Head Football Coach",
"link": "https://tsutigers.com/news/2025/3/23/tennessee-state-university-names-reggie-barlow-as-head-football-coach.aspx",
"thumbnail": "https://tsutigers.com/images/2025/3/24/1920x1080.png?width=1416&height=797&mode=crop&quality=80&format=jpg",
"source": "Tennessee State University Athletics",
"authors": "",
"date": "2025-03-23T14:04:00.000Z",
"rank": 60
},
{
"title": "Jason Onye returns to Notre Dame football, inspires coaches and players alike",
"link": "https://www.southbendtribune.com/story/sports/college/football/2025/03/27/jason-onyes-return-to-notre-dame-football-inspires-teammates-coaches-al-washington-marcus-freeman/82624653007/",
"thumbnail": "https://www.southbendtribune.com/gcdn/authoring/authoring-images/2024/09/22/NSBT/75331802007-usatsi-24294395.jpg?crop=4763,2679,x0,y248&width=660&height=371&format=pjpg&auto=webp",
"source": "South Bend Tribune",
"authors": [
"Mike Berardino"
],
"date": "2025-03-27T14:38:48.000Z",
"rank": 61
},
{
"title": "'Numb' and 'humiliated': Why China's football dream lies in tatters",
"link": "https://www.bbc.com/news/articles/ce8vp2e7p64o.amp",
"thumbnail": "https://ichef.bbci.co.uk/news/1024/branded_news/c7dd/live/b96fcca0-03d3-11f0-9b36-09a73999182b.jpg",
"source": "BBC.com",
"authors": [
"Nick Marsh"
],
"date": "2025-03-26T22:47:29.000Z",
"rank": 62
},
{
"title": "Watch Putnam Valley vs Hendrick Hudson flag football scrimmage action",
"link": "https://www.lohud.com/videos/sports/high-school/2025/03/27/section-1-high-school-flag-football-putnam-valley-vs-hendrick-hudson-scrimmage-video-highlights/82683230007/",
"thumbnail": "https://www.lohud.com/gcdn/authoring/authoring-images/2025/03/27/PWES/82683289007-fb-032626-putvhhff-41.jpg?crop=5191,2920,x0,y0&width=660&height=371&format=pjpg&auto=webp",
"source": "The Journal News",
"authors": [
"Frank Becerra"
],
"date": "2025-03-27T14:44:41.000Z",
"rank": 63
},
{
"title": "5-star QB Brady Smigiel, Newbury Park high school football 2025 schedule",
"link": "https://www.si.com/high-school/california/5-star-qb-brady-smigiel-newbury-park-high-school-football-2025-schedule-01jqc8syn9tt",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_1500,h_843,x_0,y_0/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/high_school/01jb05awst0r9m33g1na.jpg",
"source": "Sports Illustrated",
"authors": [
"Tarek Fattal"
],
"date": "2025-03-27T17:24:02.000Z",
"rank": 64
},
{
"title": "Oklahoma State football to induct Justin Blackmon into Cowboy Football Ring of Honor",
"link": "https://www.oklahoman.com/story/sports/college/cowboys/2025/03/27/oklahoma-state-football-justin-blackmon-to-be-inducted-into-football-ring-of-honor/82691570007/",
"thumbnail": "https://www.oklahoman.com/gcdn/authoring/authoring-images/2024/11/03/NOKL/76031635007-sp-12760.jpg?crop=5075,2855,x0,y0&width=660&height=371&format=pjpg&auto=webp",
"source": "Oklahoman.com",
"authors": [
"Justin Martinez"
],
"date": "2025-03-27T18:39:13.000Z",
"rank": 65
},
{
"title": "UW football to host youth football clinic in April",
"link": "https://oilcity.news/community/sports/2025/03/27/uw-football-to-host-youth-football-clinic-in-april/",
"thumbnail": "https://i0.wp.com/oilcity.news/wp-content/uploads/2025/03/football.webp?fit=1200%2C797&quality=80&ssl=1",
"source": "Oil City News",
"authors": "",
"date": "2025-03-27T18:17:59.000Z",
"rank": 66
},
{
"title": "Football’s Pro Day set for Tuesday",
"link": "https://texaslonghorns.com/news/2025/3/24/footballs-pro-day-set-for-tuesday.aspx",
"thumbnail": "https://dxa7m90h2v1am.cloudfront.net/images/2025/3/24/Pro_Day_Gear_2025_DSC01727.jpg?width=1416&height=797&mode=crop&quality=80&format=jpg",
"source": "University of Texas Athletics",
"authors": [
"Grace Tafolla"
],
"date": "2025-03-24T20:18:29.000Z",
"rank": 67
},
{
"title": "News | Saluki Football announces 2025 schedule",
"link": "https://siusalukis.com/news/2025/3/26/saluki-football-announces-2025-schedule",
"thumbnail": "https://images.sidearmdev.com/resize?url=https%3A%2F%2Fdxbhsrqyrr690.cloudfront.net%2Fsidearm.nextgen.sites%2Fsiusalukis.com%2Fimages%2F2025%2F3%2F26%2FSchedule_copy-2.jpg&height=300&type=webp",
"source": "Southern Illinois University Athletics",
"authors": [
"Tom Weber"
],
"date": "2025-03-26T19:18:26.000Z",
"rank": 68
},
{
"title": "Why Kalen DeBoer, Alabama football won’t have spring game for A-Day",
"link": "https://www.al.com/alabamafootball/2025/03/why-kalen-deboer-alabama-football-wont-have-spring-game-for-a-day.html?outputType=amp",
"thumbnail": "https://www.al.com/resizer/v2/SNO2KFK3BNGJ7CQT376CC7RNQU.jpg?auth=cbf210622a7dc7c439ce319af2665f5533c568916a54a3dc4f4d216d5d755327&width=1280&quality=90",
"source": "AL.com",
"authors": [
"Matt Stahl"
],
"date": "2025-03-27T17:39:00.000Z",
"rank": 69
},
{
"title": "Stanford Football Program Statement from Andrew Luck",
"link": "https://gostanford.com/news/2025/3/25/stanford-football-program-statement-from-andrew-luck",
"thumbnail": "https://gostanford.com/imgproxy/D8p9tGbVnPb9B4N5pehCKAZf0dYvwR1Gi9AxWYTLa98/rs:fit:1980:0:0/g:ce/q:90/aHR0cHM6Ly9zdG9yYWdlLmdvb2dsZWFwaXMuY29tL3N0YW5mb3JkLXByb2QvMjAyNS8wMy8yNS90UDY2WTF3eHIxQ1RLeDFzR1VuSjNtelo3SjUwS3FqcjU3SWh6R2hqLmpwZw.jpg",
"source": "Stanford Athletics",
"authors": "",
"date": "2025-03-25T17:10:53.000Z",
"rank": 70
},
{
"title": "Which team could be the next SMU? College football teams poised to rise in 2025",
"link": "https://www.espn.com/college-football/story/_/id/44332677/2025-college-football-teams-poised-rise-lsu",
"thumbnail": "https://a1.espncdn.com/combiner/i?img=%2Fphoto%2F2025%2F0322%2Fr1467845_1296x729_16%2D9.jpg",
"source": "ESPN",
"authors": "",
"date": "2025-03-24T13:00:00.000Z",
"rank": 71
},
{
"title": "Penn State offensive analyst Frank Leonard retiring",
"link": "https://www.collegian.psu.edu/football/penn-state-offensive-analyst-frank-leonard-retiring/article_26252fd9-5309-4d09-b507-55c6f8792092.html",
"thumbnail": "https://bloximages.newyork1.vip.townnews.com/psucollegian.com/content/tncms/assets/v3/editorial/d/40/d4064d8a-65a6-11ef-a2ed-d3ea0ac238f8/66cfd022c301a.image.jpg?resize=400%2C266",
"source": "The Daily Collegian",
"authors": [
"Lyle Alenstein"
],
"date": "2025-03-27T15:03:00.000Z",
"rank": 72
},
{
"title": "Penn State Assistant Frank Leonard Retiring From Football, No Longer With Program",
"link": "https://www.statecollege.com/articles/penn-state-football/penn-state-assistant-frank-leonard-retiring-from-football-no-longer-with-program/",
"thumbnail": "https://www.statecollege.com/wp-content/uploads/2025/03/53978922455_bb8655a03e_o-scaled.jpg",
"source": "Statecollege.com",
"authors": [
"Seth Engle"
],
"date": "2025-03-27T15:56:46.000Z",
"rank": 73
},
{
"title": "Where did ESPN’s latest mock NFL Draft project Syracuse football players to be selected?",
"link": "https://www.syracuse.com/orangefootball/2025/03/where-did-espns-latest-mock-nfl-draft-project-syracuse-football-players-to-be-selected.html?outputType=amp",
"thumbnail": "https://www.syracuse.com/resizer/v2/CV5OGVXD5RDOPCS73BMN7UTUNI.jpg?auth=a142f5efbd3496844e6c6734f9c69a811d8a187e172ed35743bd4719a8c6b267&width=1280&quality=90",
"source": "syracuse.com",
"authors": [
"Chris Carlson"
],
"date": "2025-03-27T13:49:00.000Z",
"rank": 74
},
{
"title": "Penn State Football: Notes From Nittany Lions Spring Practice",
"link": "https://www.si.com/college/pennstate/football/penn-state-football-notes-from-nittany-lions-spring-practice",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_3028,h_1703,x_0,y_45/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/ImagnImages/mmsport/all_penn_state/01jqc3exthg7fqaa133p.jpg",
"source": "Sports Illustrated",
"authors": [
"Mark Wogenrich"
],
"date": "2025-03-27T16:33:54.000Z",
"rank": 75
},
{
"title": "2025 Tennessee Tech Football Schedule",
"link": "https://www.si.com/college/fcs/big-south-ovc/2025-tennessee-tech-football-schedule-fcs",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_1781,h_1001,x_0,y_0/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/fcs_football_central/01j0c1st8wepnddqzmqv.jpg",
"source": "Sports Illustrated",
"authors": [
"Zachary Mckinnell"
],
"date": "2025-03-27T18:10:11.000Z",
"rank": 76
},
{
"title": "Union-Endicott Flag Football takes down Elmira",
"link": "https://www.binghamtonhomepage.com/sports/local-sports/union-endicott-flag-football-takes-down-elmira/amp/",
"thumbnail": "https://www.binghamtonhomepage.com/wp-content/uploads/sites/79/2025/03/ue-elmira-ff.jpg?strip=1",
"source": "WIVT - NewsChannel 34",
"authors": [
"Bruce Juneau"
],
"date": "2025-03-27T17:52:10.000Z",
"rank": 77
},
{
"title": "2025 LSU Football Pro Day",
"link": "https://lsusports.net/25proday/",
"thumbnail": "https://i.ytimg.com/vi/rPUp4vTMS50/mqdefault.jpg",
"source": "Louisiana State University Athletics",
"authors": "",
"date": "2025-03-26T16:15:00.000Z",
"rank": 78
},
{
"title": "Fantasy impact of offseason NFL movement: Wilson to Giants, Diggs to Patriots",
"link": "https://www.espn.com/fantasy/football/story/_/id/44029981/2025-nfl-free-agency-fantasy-football-impact-signings-trades",
"thumbnail": "https://a.espncdn.com/photo/2025/0309/nfl_fancy_football_2025_offseason_1296x518.png",
"source": "ESPN",
"authors": [
"Fantasy Staff"
],
"date": "2025-03-26T01:00:00.000Z",
"rank": 79
},
{
"title": "2025 Nicholls Football Schedule",
"link": "https://www.si.com/college/fcs/southland/2025-nicholls-football-schedule-fcs",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_5184,h_2916,x_0,y_953/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/fcs_football_central/01hxwq0pmsj4xadsg5bj.jpg",
"source": "Sports Illustrated",
"authors": [
"Zachary Mckinnell"
],
"date": "2025-03-27T18:26:29.000Z",
"rank": 80
},
{
"title": "Would Alabama practice with another team in spring? What Kalen DeBoer said",
"link": "https://www.al.com/alabamafootball/2025/03/would-alabama-practice-with-another-team-in-spring-what-kalen-deboer-said.html?outputType=amp",
"thumbnail": "https://www.al.com/resizer/v2/GOOXD7XAXRBYBHL6JZORV3EJHQ.jpg?auth=d30650f4762f32ce18e15a6b9ef9b16f9c02edd7547b0900f32bdbf0453c01a5&width=1280&quality=90",
"source": "AL.com",
"authors": [
"Matt Stahl"
],
"date": "2025-03-27T16:43:00.000Z",
"rank": 81
},
{
"title": "Jones named offensive coordinator for SU's Mountaineer Football",
"link": "https://www.hccommunityjournal.com/article_c33bcee5-1ef9-4432-a3b4-8d8289fcc652.html",
"thumbnail": "https://bloximages.chicago2.vip.townnews.com/hccommunityjournal.com/content/tncms/assets/v3/editorial/6/f8/6f8bd5d6-e577-11ef-ab41-bba73ddba70c/67a640e4a4a99.image.jpg?resize=1200%2C733",
"source": "Community journal",
"authors": "",
"date": "2025-03-27T16:06:00.000Z",
"rank": 82
},
{
"title": "LaNorris Sellers Ranked a Top Five Quarterback in College Football By Coaches",
"link": "https://www.si.com/college/southcarolina/football/lanorris-sellers-ranked-a-top-five-quarterback-in-college-football-by-coaches-01jqc4e2h8fr",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_3532,h_1986,x_0,y_116/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/ImagnImages/mmsport/gamecock_digest/01jqc4tqjgy3e9yn1wkm.jpg",
"source": "Sports Illustrated",
"authors": [
"Jonathan Williams"
],
"date": "2025-03-27T15:52:30.000Z",
"rank": 83
},
{
"title": "Holy Cross football team excited about being back in pads and on field",
"link": "https://spectrumnews1.com/ma/worcester/news/2025/03/27/holy-cross-football-team-excited-about-being-back-in-pads-and-on-field",
"thumbnail": "https://s7d2.scene7.com/is/image/TWCNews/kevin_327?wid=1250&hei=703&$wide-bg$",
"source": "Spectrum News 1",
"authors": "",
"date": "2025-03-27T12:57:00.000Z",
"rank": 84
},
{
"title": "Michigan football's new-look RB room has lofty goal: 'Be the best in the country'",
"link": "https://www.freep.com/story/sports/college/university-michigan/wolverines/2025/03/27/michigan-football-rb-room-reloaded-behind-justice-haynes-jordan-marshall/82655977007/",
"thumbnail": "https://www.freep.com/gcdn/authoring/authoring-images/2025/01/01/PDTF/77364569007-usatsi-25091156.jpg?crop=3954,2224,x0,y0&width=660&height=371&format=pjpg&auto=webp",
"source": "Detroit Free Press",
"authors": [
"Tony Garcia"
],
"date": "2025-03-27T10:08:07.000Z",
"rank": 85
},
{
"title": "Maine-Endwell Flag Football blanks Horseheads in season opener",
"link": "https://www.binghamtonhomepage.com/sports/local-sports/maine-endwell-flag-football-blanks-horseheads-in-season-opener/amp/",
"thumbnail": "https://www.binghamtonhomepage.com/wp-content/uploads/sites/79/2025/03/me-hh-ff.00_00_36_21.Still001.jpg?strip=1",
"source": "WIVT - NewsChannel 34",
"authors": [
"Bruce Juneau"
],
"date": "2025-03-27T17:55:16.000Z",
"rank": 86
},
{
"title": "Flag football returns to Richmond Hill for another season",
"link": "https://www.bryancountynews.com/sports/flag-football-returns-to-richmond-hill-for-another-season/",
"thumbnail": "https://statesboroherald.cdn-anvilcms.net/media/images/2018/06/06/images/football_I4W7Yxn.max-752x423.jpg",
"source": "Bryan County News",
"authors": "",
"date": "2025-03-27T15:18:30.000Z",
"rank": 87
},
{
"title": "Fantasy Football: Rookie tight end prospect model",
"link": "https://www.pff.com/news/draft-fantasy-football-rookie-tight-end-prospect-model",
"thumbnail": "https://media.pff.com/2024/12/2YTRJ3T-scaled.jpg?w=1200&h=675",
"source": "Pro Football Focus",
"authors": [
"Jonathon Macri"
],
"date": "2025-03-27T09:30:00.000Z",
"rank": 88
},
{
"title": "Rodriguez: College football trending toward pro model",
"link": "https://westvirginia.rivals.com/news/rodriguez-college-football-needs-to-adopt-nfl-model",
"thumbnail": "https://images.rivals.com/image/upload/f_auto,q_auto,t_large/juvalvbugjvwqlvaj8gu",
"source": "West Virginia Football",
"authors": [
"Keenan Cummings"
],
"date": "2025-03-27T17:45:45.000Z",
"rank": 89
},
{
"title": "Tech football set for Pro Day on March 26",
"link": "https://hokiesports.com/news/2025/03/24/virginia-tech-football-set-for-pro-day-on-march-26th",
"thumbnail": "https://hokiesports.com/imgproxy/_21PPnuqFpjz8D2AtRE3YdCmLadUyG2eIav0IFXHL1k/rs:fit:1980:0:0/g:ce/q:90/aHR0cHM6Ly9zdG9yYWdlLmdvb2dsZWFwaXMuY29tL3ZpcmdpbmlhdGVjaC1wcm9kLzIwMjUvMDMvMjQveHoxbWw5UUJ2SXgwdjRnUlplVDFvbXZWNnJmbjdjeTBuclhwaFNWYi5qcGc.jpg",
"source": "VT hokiesports.com",
"authors": "",
"date": "2025-03-24T20:15:51.000Z",
"rank": 90
},
{
"title": "Andrew Luck Fires Stanford Football Coach Amid Female Staffer Scandal",
"link": "https://wbznewsradio.iheart.com/content/2025-03-27-andrew-luck-fires-stanford-football-coach-amid-female-staffer-scandal/",
"thumbnail": "https://i.iheart.com/v3/re/new_assets/67e577bab11d4809bb8e89ac?ops=gravity(%22north%22),fit(1200,675),quality(65)",
"source": "iHeart",
"authors": [
"Jason Hall"
],
"date": "2025-03-27T16:11:00.000Z",
"rank": 91
},
{
"title": "NFL Bringing in Caitlin Clark to Help With New Flag Football initiative",
"link": "https://www.si.com/wnba/nfl-caitlin-clark-flag-football",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_5021,h_2824,x_0,y_456/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/ImagnImages/mmsport/si/01jqbsgx58rs2tj2z6ad.jpg",
"source": "Sports Illustrated",
"authors": [
"Kristen Wong"
],
"date": "2025-03-27T13:00:29.000Z",
"rank": 92
},
{
"title": "'When he talked everybody listened'; remembering beloved McNary football coach Tom Smythe",
"link": "https://www.statesmanjournal.com/story/sports/high-school/2025/03/27/when-he-talked-everybody-listened-remembering-mcnarys-tom-smythe/82599461007/",
"thumbnail": "https://www.statesmanjournal.com/gcdn/presto/2019/10/05/PSAL/473745a7-94a3-4830-8379-1cc9f1e78847-saldc5-5c0c8erts5419ugojfjs_original.jpg?width=660&height=433&fit=crop&format=pjpg&auto=webp",
"source": "Statesman Journal",
"authors": [
"Jarrid Denney"
],
"date": "2025-03-27T12:02:48.000Z",
"rank": 93
},
{
"title": "Where Alabama football’s quarterback battle stands after 1st spring scrimmage",
"link": "https://www.al.com/alabamafootball/2025/03/where-alabama-footballs-quarterback-battle-stands-after-1st-spring-scrimmage.html?outputType=amp",
"thumbnail": "https://www.al.com/resizer/v2/T65YAPFDOVF3PK3RUTQZFESSRU.JPG?auth=3cd7bba8f951de7eb7822452766080e4fa4fb8f15ddca85fde008c583722e42c&width=1280&quality=90",
"source": "AL.com",
"authors": [
"Matt Stahl"
],
"date": "2025-03-27T17:07:00.000Z",
"rank": 94
},
{
"title": "Oregon spring football practice to return next week",
"link": "https://247sports.com/college/oregon/article/oregon-spring-football-ducks-football--247776381/amp/",
"thumbnail": "https://s3media.247sports.com/Uploads/Assets/674/839/12839674.jpg",
"source": "247Sports",
"authors": [
"Erik Skopil"
],
"date": "2025-03-27T17:00:41.000Z",
"rank": 95
},
{
"title": "Everything Kalen DeBoer Said After Alabama Football's Thursday Scrimmage",
"link": "https://www.si.com/college/alabama/football/everything-kalen-deboer-said-after-alabama-football-s-thursday-scrimmage-",
"thumbnail": "https://images2.minutemediacdn.com/image/upload/c_crop,w_1406,h_790,x_218,y_0/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/bama_central/01jqc6xvt03hj6p4kegb.png",
"source": "Sports Illustrated",
"authors": [
"Will Miller"
],
"date": "2025-03-27T17:13:48.000Z",
"rank": 96
},
{
"title": "Is Syracuse football looking for its own Travis Hunter in Demetres Samuel Jr.? ‘This is the real deal’",
"link": "https://www.syracuse.com/orangefootball/2025/03/is-syracuse-football-looking-for-its-own-travis-hunter-in-demetres-samuel-jr-this-is-the-real-deal.html?outputType=amp",
"thumbnail": "https://www.syracuse.com/resizer/v2/RMJQ4RWHLFGYXJVPTUYRBSCFGY.jpg?auth=cef676009768277db9de4e54ae0ece79aa42b4b8348b65184d991f491cb253ed&width=1280&quality=90",
"source": "syracuse.com",
"authors": [
"Chris Carlson"
],
"date": "2025-03-26T10:01:00.000Z",
"rank": 97
},
{
"title": "Oklahoma State wide receiver Justin Blackmon will join Cowboy Football Ring of Honor",
"link": "https://sports.yahoo.com/article/oklahoma-state-wide-receiver-justin-174537042.html",
"thumbnail": "https://s.yimg.com/ny/api/res/1.2/SEZo9It8DHCLZBbx43.E1Q--/YXBwaWQ9aGlnaGxhbmRlcjt3PTY0MDtoPTQ2NztjZj13ZWJw/https://media.zenfs.com/en/the-oklahoman/efc952717ad7336f617bbad7ff55671f",
"source": "Yahoo Sports",
"authors": [
"Justin Martinez"
],
"date": "2025-03-27T17:45:37.000Z",
"rank": 98
},
{
"title": "Watch: IU football transfer OL Pat Coogan spring practice media Q&A",
"link": "https://www.thedailyhoosier.com/watch-iu-football-transfer-ol-pat-coogan-spring-practice-media-qa/",
"thumbnail": "https://i0.wp.com/www.thedailyhoosier.com/wp-content/uploads/2025/03/Pat-Coogan.jpg?fit=906%2C604&ssl=1",
"source": "The Daily Hoosier",
"authors": "",
"date": "2025-03-27T16:54:34.000Z",
"rank": 99
},
{
"title": "Fairport football: Skippers tap Marcus Jones as new head coach",
"link": "https://www.news-herald.com/2025/03/27/fairport-football-skippers-tap-marcus-jones-as-new-head-coach/",
"thumbnail": "https://www.news-herald.com/wp-content/uploads/2025/03/TNH-L-MarcusJones-01.jpg?w=248",
"source": "News-Herald.com",
"authors": [
"John Kampf"
],
"date": "2025-03-27T15:12:13.000Z",
"rank": 100
}
]
}
Last updated