Google Images API
The Google Images API allows developers to access images from Google Search results. It is an easy way to add image search functionality to your website or application.
Here is the list of default parameters for this API:
api_key
required
This is your API key.
q
required
Type: String
Google Search Query
gl
Type: String
domain
Type: String
Default: "google.com"
To obtain local results from a specific country, for example, for India, it will be "google.co.in," and for the UK, it will be "google.co.uk."
hl
Type: String
Default: "en_us"
The language of the requested results.
ijn
Type: Number(Integer)
[0,1,2....]
Default: 0
(Enter 1 for 2nd-page results, 2 for 3rd, etc .) The page number to get targeted search results.
lr
Type: String
Limit the search to one or multiple languages. It is used as lang_{language code}
. For example - "lang_us".
uule
Type: String
Used to encode a place an exact location(with latitude and longitude) into a value used in a cookie, an URL, or an HTTP header.
nfpr
Type: Boolean
Default: 0
It excludes the result from an auto-corrected query that is spelled wrong. It can be set to 1
to exclude these results or 0
to include them.
tbs
Type: String
to be searched - An advanced parameter to filter search results.
chips
Type: String
Used to filter image results. They are provided under the section suggested_searches
when ijn = 0
.
safe
Type: String [active/off]
Default: off
To filter the adult content set safe
to active
or to disable it set it off
.
html
Type: Boolean
Default: false
To render the response as raw HTML.
Some relevant tbs parameters for the Google Images API
Size
tbs = size:l
l
- for large-sized images tbs = size:m
m
- for medium-sized images
tbs = size:i
i
- for icon-sized images
Images of specific color
tbs=ic:specific,isc:color
color = [orange, yellow, green, teal, blue, purple, pink, white, gray, black, brown]
Creative Common licenses images
tbs=il:cl
Commercial and other licenses
tbs=il:ol
API Example:
cURL "https://api.apiforseo.com/google_images?api_key=APIKEY&q=football&gl=us"
import requests
payload = {'api_key': 'APIKEY', 'q':'football', 'gl' : 'us'}
resp = requests.get('https://api.apiforseo.com/google_images', params=payload)
print (resp.text)
try {
String apiKey = "APIKEY";
String url = "https://api.apiforseo.com/google_images?api_key=APIKEY&q=football&gl=us";
URL urlForGetRequest = new URL(url);
String readLine = null;
HttpURLConnection conection = (HttpURLConnection) urlForGetRequest.openConnection();
conection.setRequestMethod("GET");
int responseCode = conection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader in = new BufferedReader(new InputStreamReader(conection.getInputStream()));
StringBuffer response = new StringBuffer();
while ((readLine = in.readLine()) != null) {
response.append(readLine);
}
in.close();
System.out.println(response.toString());
} else {
throw new Exception("Error in API Call");
}
} catch (Exception ex) {
ex.printStackTrace();
}
try {
String apiKey = "APIKEY";
String url = "https://api.apiforseo.com/google_images?api_key=APIKEY&q=football&gl=us";
URL urlForGetRequest = new URL(url);
String readLine = null;
HttpURLConnection conection = (HttpURLConnection) urlForGetRequest.openConnection();
conection.setRequestMethod("GET");
int responseCode = conection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader in = new BufferedReader(new InputStreamReader(conection.getInputStream()));
StringBuffer response = new StringBuffer();
while ((readLine = in.readLine()) != null) {
response.append(readLine);
}
in.close();
System.out.println(response.toString());
} else {
throw new Exception("Error in API Call");
}
} catch (Exception ex) {
ex.printStackTrace();
}
require 'net/http'
require 'json'
params = {
:api_key => "APIKEY",
:q => "football",
:gl => "us"
}
uri = URI('https://api.apiforseo.com/google_images')
uri.query = URI.encode_www_form(params)
website_content = Net::HTTP.get(uri)
print(website_content)
<?php
$url = "https://api.apiforseo.com/google_images?api_key=APIKEY&q=footbal&gl=us";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
print_r($response);
API Response
{
"time_taken": 1767.945385,
"ads": [],
"images_results": [
{
"title": "File:American football.svg - Wikipedia",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR5HkGt1qXTMu9jmUNZ5b_tD1h--4Y12iLqVw&s",
"source": "en.m.wikipedia.org",
"original": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/16/American_football.svg/1200px-American_football.svg.png",
"link": "https://en.m.wikipedia.org/wiki/File:American_football.svg",
"original_height": 1200,
"original_width": 1200,
"original_size": "221KB",
"know_more_link": 1,
"is_product": false,
"rank": 1
},
{
"title": "College football bowl games today: Schedule features five ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRFDqYe00RHhwDhcepGXXCpkahATHZ63D4_vA&s",
"source": "www.usatoday.com",
"original": "https://www.usatoday.com/gcdn/authoring/authoring-images/2024/09/12/USAT/75192359007-usatsi-24181090.jpg?crop=3454,3454,x762,y0",
"link": "https://www.usatoday.com/story/sports/ncaaf/2024/12/31/what-college-football-bowl-games-are-today-dec-31/77332259007/",
"original_height": 3454,
"original_width": 3454,
"original_size": "1.6MB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIlbfc28ig65GDARC3vJq00NGtiHqP7rQjFwAAAA%3D%3D&q=https://www.usatoday.com/story/sports/ncaaf/2024/12/31/what-college-football-bowl-games-are-today-dec-31/77332259007/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 2
},
{
"title": "What does a touchdown mean in American football? | DAZN News US",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR03ubMtPqJNfAG7aLYmVcaVdH_upU8Q1wilg&s",
"source": "www.dazn.com",
"original": "https://images.daznservices.com/di/library/DAZN_News/ce/e2/nfl-20111023-getty-ftr_1a3hqlpjs7zjj17c65c21onynn.jpg?t=1405963965&w=800&quality=100",
"link": "https://www.dazn.com/en-US/news/american-football/what-does-a-touchdown-mean-in-american-football/1k6fctkqnas121ps1e3anwnzpg",
"original_height": 450,
"original_width": 800,
"original_size": "274KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4_i_orvlcevqLU2MAhfurZ_cd7v581VGAHz1OYUYAAAA&q=https://www.dazn.com/en-US/news/american-football/what-does-a-touchdown-mean-in-american-football/1k6fctkqnas121ps1e3anwnzpg&ctx=iv&hl=en-US",
"is_product": false,
"rank": 3
},
{
"title": "Football - Furman University",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcReEYGLTHz_fSAmpkGvHn2wjeCH2oYjad-VEw&s",
"source": "furmanpaladins.com",
"original": "https://furmanpaladins.com/images/2024/11/21/Football_ETSU_363.JPG?anchor=center&width=1280&height=720&mode=crop&quality=80&format=jpg",
"link": "https://furmanpaladins.com/sports/football",
"original_height": 720,
"original_width": 1280,
"original_size": "93KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Thy6vjEpQf_LfIR6Op9e-Pdr1PLvQHg9V1wFgAAAA%3D%3D&q=https://furmanpaladins.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 4
},
{
"title": "Wilson The Duke NFL Football",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR2ZFMnvdSqEvKUYkRD_Y5kTIRlPghcybVwtA&s",
"source": "www.walmart.com",
"original": "https://i5.walmartimages.com/seo/Wilson-NFL-The-Duke-Official-Leather-Game-Football_d5908cdb-74bb-4b22-9dbe-056823b52f68.01f80822f0e5d1c489edf76db36fd693.jpeg?odnHeight=768&odnWidth=768&odnBg=FFFFFF",
"link": "https://www.walmart.com/ip/Wilson-NFL-The-Duke-Official-Leather-Game-Football/134386765",
"original_height": 768,
"original_width": 768,
"original_size": "51KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYIpeafzc7v64_qARDMgPfbtrbP7o4BwPF5hxgAAAA%3D&q=https://www.walmart.com/ip/Wilson-NFL-The-Duke-Official-Leather-Game-Football/134386765&ctx=iv&hl=en-US",
"is_product": true,
"rank": 5
},
{
"title": "NIKE All Field 3.0 FB 9 Official Single Brown/White/Metallic Silver/Black Football Ball",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTG0QJMG0-SkvHLvbTq1728C2ShbFTSlOsfaA&s",
"source": "www.amazon.com",
"original": "https://m.media-amazon.com/images/I/61BYcXWqhwL._AC_UF1000,1000_QL80_.jpg",
"link": "https://www.amazon.com/Nike-All-Field-Official-Size-Football/dp/B076DFMSFF",
"original_height": 628,
"original_width": 1000,
"original_size": "130KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIhIbCuNqu-977ARC4_bSt-LLe-zp14LN8FwAAAA%3D%3D&q=https://www.amazon.com/Nike-All-Field-Official-Size-Football/dp/B076DFMSFF&ctx=iv&hl=en-US",
"is_product": true,
"rank": 6
},
{
"title": "American football",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQH3sILgcGzeny9wNT5yMUB_HxDBMvrK4S0UA&s",
"source": "www.select-sport.com",
"original": "http://www.select-sport.com/cdn/shop/files/8556076_430001_brown_American_Football_rubber.jpg?v=1724297828&width=2048",
"link": "https://www.select-sport.com/products/american-football-430004",
"original_height": 2048,
"original_width": 2048,
"original_size": "195KB",
"know_more_link": "https://lh5.googleusercontent.com/proxy/6_FPEn1rNA7-Y9akq5wvcin-7E02pyCfhtXFLmfPXz47s7Lir4CHodexqkSKfZH2HDSHD1TRp-YRf32LNDdXPknl0xF1tLei-AYbXxf1hjuBWFRmWW-MNNGi2chJkAshLC2TdKBoFh2QfeXX4Q-64VUHX6yCbcoifpFvie_rUDUOZRSygweR",
"is_product": true,
"rank": 7
},
{
"title": "EA SPORTS™ College Football 25",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRZ0eU9B3NXQBpMqwy4oikbRGznK-6qoTWNbQ&s",
"source": "www.playstation.com",
"original": "https://image.api.playstation.com/vulcan/ap/rnd/202408/2112/53bb3272acee41261191c35a5ad15736775c417bd3160be4.png",
"link": "https://www.playstation.com/en-us/games/ea-sports-college-football/",
"original_height": 1024,
"original_width": 1024,
"original_size": "258KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5eg8cOf9lI6dL9UEGudd2vvqybbVpxgBVWxH4xcAAAA%3D&q=https://www.playstation.com/en-us/games/ea-sports-college-football/&ctx=iv&hl=en-US",
"is_product": true,
"rank": 8
},
{
"title": "the-ball-football.jpg?mode=max ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTiNAaJQJum6GgYqytfKggAwhRlMCZ2nQMvmA&s",
"source": "operations.nfl.com",
"original": "https://operations.nfl.com/media/2948/the-ball-football.jpg?mode=max&width=995",
"link": "https://operations.nfl.com/learn-the-game/nfl-basics/terms-glossary/glossary-terms-list/wilson/",
"original_height": 663,
"original_width": 995,
"original_size": "317KB",
"know_more_link": 0,
"is_product": false,
"rank": 9
},
{
"title": "Ball (gridiron football) - Wikipedia",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSaida3w4oCH55KqBMUJghPWtGaYy1aLZeWkw&s",
"source": "en.wikipedia.org",
"original": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/Football_signed_by_Gerald_R._Ford.jpg/800px-Football_signed_by_Gerald_R._Ford.jpg",
"link": "https://en.wikipedia.org/wiki/Ball_(gridiron_football)",
"original_height": 640,
"original_width": 800,
"original_size": "126KB",
"know_more_link": 1,
"is_product": false,
"rank": 10
},
{
"title": "USA Football | The Sport's Governing Body",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ56uTxqP_WJh-IidFB8qONnZtoT8r6PSjY3w&s",
"source": "www.usafootball.com",
"original": "https://squidex.usafootball.com/api/assets/usawebsite/afecbd42-79b2-42a3-b3cf-3c6d79fec0d1/",
"link": "https://www.usafootball.com/",
"original_height": 309,
"original_width": 430,
"original_size": "23KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIz9i3pLLVvaBgEM_Z86b0pK3z-gHAbidBFwAAAA%3D%3D&q=https://www.usafootball.com/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 11
},
{
"title": "College football All-America teams 2021: Aidan Hutchinson ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcScfEhyFtMX9MrDbW-aX91b70KC3iqu1wWDYA&s",
"source": "www.nytimes.com",
"original": "https://cdn.theathletic.com/app/uploads/2021/12/07164733/USATSI_17198003-scaled-e1638913715294.jpg",
"link": "https://www.nytimes.com/athletic/3003597/2021/12/08/college-football-all-america-teams-2021-aidan-hutchinson-will-anderson-kenneth-walker-bryce-young-lead-seasons-best/",
"original_height": 1248,
"original_width": 1868,
"original_size": "206KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUI8cymjMX49eJtENnbwoHk8tPv1AF0hSJQFwAAAA%3D%3D&q=https://www.nytimes.com/athletic/3003597/2021/12/08/college-football-all-america-teams-2021-aidan-hutchinson-will-anderson-kenneth-walker-bryce-young-lead-seasons-best/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 12
},
{
"title": "National Football League (NFL) | History, Teams, & Facts ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXL8kG03B7RWEB5Nz47ZkrSytbys6UwekUzg&s",
"source": "www.britannica.com",
"original": "https://cdn.britannica.com/30/249830-050-63E9E776/Baltimore-Ravens-quarterback-Lamar-Jackson-2018.jpg",
"link": "https://www.britannica.com/topic/National-Football-League",
"original_height": 1028,
"original_width": 1600,
"original_size": "222KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIsLu0kNz00ProARClj7PeqryQ6iwpetpxFwAAAA%3D%3D&q=https://www.britannica.com/topic/National-Football-League&ctx=iv&hl=en-US",
"is_product": false,
"rank": 13
},
{
"title": "IUP secures season-opening win over Ashland with well ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRojbofFh5TofbM_bDuM0ns5QR0qHPvVSLF2A&s",
"source": "iupathletics.com",
"original": "https://iupathletics.com/images/2024/9/5/Houser_1920x1080_090524.jpg",
"link": "https://iupathletics.com/news/2024/9/5/football-iup-secures-season-opening-win-over-ashland-with-well-rounded-performance.aspx",
"original_height": 1080,
"original_width": 1920,
"original_size": "85KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5TiwZm3P3ueH2sUFFkxf3nzp2Z6NCxkBf28D2xcAAAA%3D&q=https://iupathletics.com/news/2024/9/5/football-iup-secures-season-opening-win-over-ashland-with-well-rounded-performance.aspx&ctx=iv&hl=en-US",
"is_product": false,
"rank": 14
},
{
"title": "Over 300 Free Football Vectors - Pixabay",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSXo8tXXCbU9nsV2Qn54ItpMWxaC5FzR2FaRA&s",
"source": "pixabay.com",
"original": "https://cdn.pixabay.com/photo/2013/07/13/10/51/football-157930_1280.png",
"link": "https://pixabay.com/vectors/search/football/",
"original_height": 1280,
"original_width": 1280,
"original_size": "228KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Xj4Ys2bCZc3N01jFJjYdHLh98lNW0sBH9M54RcAAAA%3D&q=https://pixabay.com/vectors/search/football/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 15
},
{
"title": "5 Fun Facts About Your Favorite Sport: Football – Grip Boost",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQTzocPkEUP4TP7nB7TGrDVi_qQ1Y8jiyZWDw&s",
"source": "www.gripboost.com",
"original": "http://www.gripboost.com/cdn/shop/articles/footballglovesstickyspray_61cd82ed-c059-4d25-92ad-37de50f5ca1d.jpg?v=1563412448",
"link": "https://www.gripboost.com/blogs/blog/5-fun-facts-about-your-favorite-sport-football",
"original_height": 598,
"original_width": 803,
"original_size": "59KB",
"know_more_link": "https://lh5.googleusercontent.com/proxy/Ufs8My6MsGivRFuD5o8huTG9L7G4LshItfoHIhErnVjZzl9iCbbUQCp82ITfdWZ_0BPjW0tGjCZoRO47egCVQstQRNr7YzTbG_hvHvfMAxHWjKufAefmNxlMlN3JOCywHX3pcO3nXwPesOmP0wlq-Qpocr-Qv1sm0KmQb4CyZ0M5e4EbXzuWu5_zV7nl",
"is_product": false,
"rank": 16
},
{
"title": "Why is football called 'football'?",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR5C-jwIGSS3gzAortx46bSDqXEHD3UKxnQcg&s",
"source": "www.newsnationnow.com",
"original": "https://www.newsnationnow.com/wp-content/uploads/sites/108/2022/02/FootballGettyImages-78457130.jpg?w=1280",
"link": "https://www.newsnationnow.com/us-news/hold-why-is-football-called-football/",
"original_height": 629,
"original_width": 1118,
"original_size": "237KB",
"know_more_link": 0,
"is_product": false,
"rank": 17
},
{
"title": "Wilson Custom Footballs - Customize a Wilson Duke Football ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRN43TwAfbA9Nrp6v5H7t7t_r9zH7ipMtowYA&s",
"source": "www.wilson.com",
"original": "https://www.wilson.com/en-us/custom/footballs/assets/images/products/display/quick-ship/options/nfl-duke-craftsmans-cut/front.png",
"link": "https://www.wilson.com/en-us/custom/footballs/quick-ship/nfl-duke",
"original_height": 500,
"original_width": 849,
"original_size": "182KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIyebZ2uv3tIAOEMbmlqTK9t2q8AHXOvTaFwAAAA%3D%3D&q=https://www.wilson.com/en-us/custom/footballs/quick-ship/nfl-duke&ctx=iv&hl=en-US",
"is_product": false,
"rank": 18
},
{
"title": "American Football | DAZN US",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEhiqRbrSRBtrFk1w9oZ5DUOgrWRe2AB_Ysg&s",
"source": "www.dazn.com",
"original": "https://image.discovery.indazn.com/ca/v2/ca/image?id=82dfa7a4-e9fb-4600-8760-49965fa898fd&quality=70",
"link": "https://www.dazn.com/en-US/sport/Sport:9ita1e50vxttzd1xll3iyaulu",
"original_height": 576,
"original_width": 1024,
"original_size": "255KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIl7384Pbs2NpiEIarsNzQpsL1zgFKfUt4FwAAAA%3D%3D&q=https://www.dazn.com/en-US/sport/Sport:9ita1e50vxttzd1xll3iyaulu&ctx=iv&hl=en-US",
"is_product": false,
"rank": 19
},
{
"title": "Beautiful. Violent. American. The N.F.L. at 100. - The New ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRFdFAJIxbLRVGqCNIv7THH3N0lCVrH9wuaKA&s",
"source": "www.nytimes.com",
"original": "https://static01.nyt.com/images/2019/12/16/sports/00nfl100-mainl/merlin_161290380_2a3591cb-4059-490b-8d59-894ed9156fb8-articleLarge.jpg?quality=75&auto=webp&disable=upscale",
"link": "https://www.nytimes.com/2019/12/19/sports/football/nfl-100-violence-american-culture.html",
"original_height": 400,
"original_width": 600,
"original_size": "39KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS47i07fv8w22XNnYzClzec-XajBufm9sZAamm2ScYAAAA&q=https://www.nytimes.com/2019/12/19/sports/football/nfl-100-violence-american-culture.html&ctx=iv&hl=en-US",
"is_product": false,
"rank": 20
},
{
"title": "7 UTEP football players made NFL roster cuts. Who are they?",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS4i887atHamb2R5gz57bum2IQ5dKCwtEPsRQ&s",
"source": "www.elpasotimes.com",
"original": "https://www.elpasotimes.com/gcdn/authoring/authoring-images/2024/08/28/PMJS/74979488007-getty-2165019758.jpg",
"link": "https://www.elpasotimes.com/story/sports/nfl/2024/08/28/7-utep-football-players-made-nfl-roster-cuts-who-are-they/74985154007/",
"original_height": 3464,
"original_width": 5196,
"original_size": "1.5MB",
"know_more_link": 0,
"is_product": false,
"rank": 21
},
{
"title": "Security concerns alter Iredell football games' start times",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTzBF5J3SfZTbWFgViEwuVV1BnY5RvBWbjkIw&s",
"source": "statesville.com",
"original": "https://bloximages.newyork1.vip.townnews.com/statesville.com/content/tncms/assets/v3/editorial/1/4e/14e69046-c514-11e9-bb62-377bcfee1e1e/5d5eeed224312.image.jpg",
"link": "https://statesville.com/sports/high-school/football/security-concerns-alter-start-times-for-north-iredell-west-iredell-jv-varsity-football-games/article_7129563e-96d5-11ef-9633-e70f78538c95.html",
"original_height": 482,
"original_width": 720,
"original_size": "51KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUImuzekoyBz7EXEO_IsJrUk_3a_QGXsUSeFwAAAA%3D%3D&q=https://statesville.com/sports/high-school/football/security-concerns-alter-start-times-for-north-iredell-west-iredell-jv-varsity-football-games/article_7129563e-96d5-11ef-9633-e70f78538c95.html&ctx=iv&hl=en-US",
"is_product": false,
"rank": 22
},
{
"title": "American Football Ball Synthetic Leather Super Bowl Ball ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQa1uOlG0RWRtDocUmjQJSPst6H9Uy3fuRaDw&s",
"source": "www.ebay.com",
"original": "https://i.ebayimg.com/images/g/x1gAAOSwJkFlMKWu/s-l1200.jpg",
"link": "https://www.ebay.com/itm/394945227141",
"original_height": 1200,
"original_width": 1200,
"original_size": "115KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEWAOn_ChQIy5_8iLe80JRGEPHSmOPKzffye6vSZq8WAAAA&q=https://www.ebay.com/itm/394945227141&ctx=iv&hl=en-US",
"is_product": true,
"rank": 23
},
{
"title": "Wilson NCAA Red Zone Composite Football, Official Size (Ages 14 and up)",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR-rvfxgo7-4ciLut2abrSkOjbNcQFfnbCWlA&s",
"source": "www.walmart.com",
"original": "https://i5.walmartimages.com/seo/Wilson-NCAA-Red-Zone-Composite-Football-Official-Size-Ages-14-and-up_378a9879-6283-4f98-aa42-3d73a49f07da.0d3133fab0afccadc68fa3bf61e75062.jpeg",
"link": "https://www.walmart.com/ip/Wilson-NCAA-Red-Zone-Composite-Football-Official-Size-Ages-14-and-up/17165318",
"original_height": 2200,
"original_width": 2200,
"original_size": "624KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Wi5_Pja9oYnLUYCJ2586-z9cf5vDyMA0MdhmRcAAAA%3D&q=https://www.walmart.com/ip/Wilson-NCAA-Red-Zone-Composite-Football-Official-Size-Ages-14-and-up/17165318&ctx=iv&hl=en-US",
"is_product": true,
"rank": 24
},
{
"title": "How the American football show between the Seahawks and ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS5MS5cw4LG5j7CssCY7DnKirA2aRIOM9_ISQ&s",
"source": "fcbayern.com",
"original": "https://img.fcbayern.com/image/upload/f_auto/q_auto/t_cms-16x9-seo-thumbnail/v1668360410/cms/public/images/fcbayern-com/homepage/Saison-22-23/Galerien/NFL-at-FCB/NFL%20-%20Sonntag/03-nfl-son-mel.jpg",
"link": "https://fcbayern.com/en/news/2022/11/how-the-nfl-show-at-the-allianz-arena-unfolded",
"original_height": 450,
"original_width": 800,
"original_size": "65KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIpKvExt7tl4tgEPmhyrjV2870jQF29XKtFwAAAA%3D%3D&q=https://fcbayern.com/en/news/2022/11/how-the-nfl-show-at-the-allianz-arena-unfolded&ctx=iv&hl=en-US",
"is_product": false,
"rank": 25
},
{
"title": "Caleb Downs leads 4 Ohio State players selected to ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTDJz881r_DZvf4QO_he7nuS_vf0izkQCqVhw&s",
"source": "apnews.com",
"original": "https://dims.apnews.com/dims4/default/d5d4d33/2147483647/strip/false/crop/3240x2160+0+0/resize/1486x991!/quality/90/?url=https%3A%2F%2Fassets.apnews.com%2F47%2F67%2F91099ff5ebf2918ed3123504f6a7%2F8b79ee72dbf4441194192f0d15d1c096",
"link": "https://apnews.com/article/preseason-all-america-27966a98220c7c0fbad3d6df2c476c06",
"original_height": 991,
"original_width": 1486,
"original_size": "218KB",
"know_more_link": 0,
"is_product": false,
"rank": 26
},
{
"title": "Is it Soccer or Football? The History of the Sport | NBC Insider",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTIw2jU0vuOOFEVF_WptViin3A6H9Y6cq7jGg&s",
"source": "www.nbc.com",
"original": "https://www.nbc.com/sites/nbcblog/files/styles/scale_862/public/2024/07/paris-2024-olympics-soccer.jpg",
"link": "https://www.nbc.com/nbc-insider/soccer-vs-american-football-differences-history",
"original_height": 575,
"original_width": 862,
"original_size": "126KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Th-6MzDvg3ta-QFDi_cdWbB4s0z1QFiOBEXFgAAAA%3D%3D&q=https://www.nbc.com/nbc-insider/soccer-vs-american-football-differences-history&ctx=iv&hl=en-US",
"is_product": false,
"rank": 27
},
{
"title": "Football rule interpretation issued for substitution rule ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS1RJnyId3ToVMT_ZZz-95m5WOwfaEVmbmokg&s",
"source": "www.ncaa.org",
"original": "https://www.ncaa.org/images/2024/6/6/M2F2023C125.jpg",
"link": "https://www.ncaa.org/news/2024/10/16/media-center-football-rule-interpretation-issued-for-substitution-rule.aspx",
"original_height": 1080,
"original_width": 1920,
"original_size": "158KB",
"know_more_link": 0,
"is_product": false,
"rank": 28
},
{
"title": "UTEP Falls at no. 10/11 Tennessee 56-0 Saturday Afternoon ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTi0W-C1ePGyzpqVBE3IxTFQ6hViaFNBqt6BQ&s",
"source": "utepminers.com",
"original": "https://utepminers.com/images/2024/11/23/Westmoreland__Maurice.jpg",
"link": "https://utepminers.com/news/2024/11/23/football-utep-falls-at-no-10-11-tennessee-56-0-saturday-afternoon.aspx",
"original_height": 1056,
"original_width": 1877,
"original_size": "166KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYI-Omysoi_n7u-ARC-r6ap-vrS5OYBUgserRgAAAA%3D&q=https://utepminers.com/news/2024/11/23/football-utep-falls-at-no-10-11-tennessee-56-0-saturday-afternoon.aspx&ctx=iv&hl=en-US",
"is_product": false,
"rank": 29
},
{
"title": "Considerations for the International Football Player ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3EWpbsAXLCh0ofdPQVDWiZjk_4m2aHP77pA&s",
"source": "www.isspf.com",
"original": "https://images.isspf.com/wp-content/uploads/2022/03/21190146/INTERNATIONAL-FOOTBALL-PLAYER-1.webp",
"link": "https://www.isspf.com/articles/considerations-for-the-international-football-player-a-look-behind-the-scenes/",
"original_height": 666,
"original_width": 1000,
"original_size": "52KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Tjwq2Pp6aNPF69gFOi5uOvL6f5t8-oB-bJV5xcAAAA%3D&q=https://www.isspf.com/articles/considerations-for-the-international-football-player-a-look-behind-the-scenes/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 30
},
{
"title": "WILSON NFL FOOTBALL-www.amerasport.com",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtsAtq0WGTU7rhodGZHOnSVpP93c_tkqSRLA&s",
"source": "www.amerasport.com",
"original": "https://www.amerasport.com/images/G22.jpg",
"link": "https://www.amerasport.com/WILSON-NFL-FOOTBALL/productinfo/G22/",
"original_height": 350,
"original_width": 350,
"original_size": "20KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIpvX77cPetcdnEPSZx8eEkLrOoQFrPHkDFwAAAA%3D%3D&q=https://www.amerasport.com/WILSON-NFL-FOOTBALL/productinfo/G22/&ctx=iv&hl=en-US",
"is_product": true,
"rank": 31
},
{
"title": "Florida High School Athletic Association",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTXiyvekPYmYKsrj3ZWvj6LeEyLLruAjj-qdg&s",
"source": "fhsaa.com",
"original": "https://fhsaa.com/images/2024/11/8/Football_Bracket_Release_image_webready.png?width=1416&height=797&mode=crop&format=jpg&quality=80",
"link": "https://fhsaa.com/index.aspx?path=football",
"original_height": 797,
"original_width": 1416,
"original_size": "112KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYIluGzucyY0sOfARCeqN_C_LTj3uEBwy2X4RgAAAA%3D&q=https://fhsaa.com/index.aspx?path%3Dfootball&ctx=iv&hl=en-US",
"is_product": false,
"rank": 32
},
{
"title": "5,015,195 American Football Stock Photos, High-Res Pictures ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRp-I7jNdgG2BCQugSh819znzjxg1lS2XVjlg&s",
"source": "www.gettyimages.com",
"original": "https://media.gettyimages.com/id/183347827/photo/leather-american-football-on-white-background.jpg?s=612x612&w=gi&k=20&c=s7DfjAhiHBgW4m5xfblu740ueJZobBrVxGSjkxorGqo=",
"link": "https://www.gettyimages.com/photos/american-football",
"original_height": 472,
"original_width": 612,
"original_size": "50KB",
"know_more_link": 0,
"is_product": false,
"rank": 33
},
{
"title": "The NFL is the rare thing that brings all Americans ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSmm-D8zS6QjXNsP3NH6Nobia6fsvZi6id2fg&s",
"source": "www.cnn.com",
"original": "https://media.cnn.com/api/v1/images/stellar/prod/220121132727-20210121-football-unity-gfx.jpg?q=w_1110,c_fill",
"link": "https://www.cnn.com/2022/01/23/sport/nfl-brings-democrats-republicans-together-spt-intl/index.html",
"original_height": 624,
"original_width": 1110,
"original_size": "105KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Wg4M7F1SuvKz7kCLUdnNzT2X3nIBQA1LhQXFgAAAA%3D%3D&q=https://www.cnn.com/2022/01/23/sport/nfl-brings-democrats-republicans-together-spt-intl/index.html&ctx=iv&hl=en-US",
"is_product": false,
"rank": 34
},
{
"title": "https://cuse.com/sports/football",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQnWVgBCVXDaW8VS_2IhID2ZS_dyxp9Msfkzg&s",
"source": "cuse.com",
"original": "https://images.sidearmdev.com/crop?url=https%3A%2F%2Fd3d4f9a2nwdz4m.cloudfront.net%2Fimages%2F2022%2F3%2F15%2Fweb_1.jpg&width=540&height=540&type=webp",
"link": "IJOuZAvpUrfWqM",
"original_height": 540,
"original_width": 540,
"original_size": "32KB",
"know_more_link": 0,
"is_product": false,
"rank": 35
},
{
"title": "Who Invented Football? | HISTORY",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSoyC-hOZTwQ1HPYh1u2Iau22PEt2YUFs7xag&s",
"source": "www.history.com",
"original": "https://assets.editorial.aetnd.com/uploads/2013/09/whoinventedfootball.jpg",
"link": "https://www.history.com/news/who-invented-football",
"original_height": 3159,
"original_width": 5616,
"original_size": "1.5MB",
"know_more_link": 0,
"is_product": false,
"rank": 36
},
{
"title": "Football (soccer) | History, Game, Rules, & Significant ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSDQeqi2-Ta1nbwXv8nOoecuoZYDSPmYsaf7Q&s",
"source": "www.britannica.com",
"original": "https://cdn.britannica.com/31/183231-050-8D8EB720/Carli-Lloyd-penalty-goal-semifinal-match-Germany-2015.jpg",
"link": "https://www.britannica.com/sports/football-soccer",
"original_height": 1193,
"original_width": 1600,
"original_size": "257KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Zi6c9GJLy_bppsIrO_eNvN6_9-rkxgBH3Y32RcAAAA%3D&q=https://www.britannica.com/sports/football-soccer&ctx=iv&hl=en-US",
"is_product": false,
"rank": 37
},
{
"title": "High school football: Week 0 schedule - Los Angeles Times",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTDlHvFpgt8RbcKZneeL4JC4pdA73uyo0P1PA&s",
"source": "www.latimes.com",
"original": "https://ca-times.brightspotcdn.com/dims4/default/ac84687/2147483647/strip/true/crop/1000x667+0+0/resize/1200x800!/quality/75/?url=https%3A%2F%2Fcalifornia-times-brightspot.s3.amazonaws.com%2Fde%2Fe5%2F3184c1374efe8d09081eb7eecc4d%2Ffootball2.jpg",
"link": "https://www.latimes.com/sports/highschool/story/2024-08-14/la-times-prep-football-week-0-schedule",
"original_height": 800,
"original_width": 1200,
"original_size": "97KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIkfavir_DmoKXARDi6s7zu5_ovGVn7JKiFwAAAA%3D%3D&q=https://www.latimes.com/sports/highschool/story/2024-08-14/la-times-prep-football-week-0-schedule&ctx=iv&hl=en-US",
"is_product": false,
"rank": 38
},
{
"title": "American football sportsman player on stadium running in ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSgm1pUqK8_atHtd9PYvrmFQx9uS2ZR0C8lyg&s",
"source": "stock.adobe.com",
"original": "https://as1.ftcdn.net/jpg/02/82/85/78/1000_F_282857808_mVvHZlqCP3GhahB6zSJTq3uZZEycMOmz.jpg",
"link": "https://stock.adobe.com/images/american-football-sportsman-player-on-stadium-running-in-action-sport-wallpaper-with-copyspace/282857808",
"original_height": 667,
"original_width": 1000,
"original_size": "290KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUI48HG4bv_74mAARDN4_a46_i-nw_yXC70FwAAAA%3D%3D&q=https://stock.adobe.com/images/american-football-sportsman-player-on-stadium-running-in-action-sport-wallpaper-with-copyspace/282857808&ctx=iv&hl=en-US",
"is_product": false,
"rank": 39
},
{
"title": "Football facts and tips - The Physio Company",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQkBjHi_9nXpYAI9SSfTVl9hbluKfQbpvO5uQ&s",
"source": "thephysiocompany.co.uk",
"original": "https://thephysiocompany.co.uk/wp-content/uploads/football.jpg",
"link": "https://thephysiocompany.co.uk/football-facts-and-tips/",
"original_height": 476,
"original_width": 900,
"original_size": "137KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIjbmCr8LvoJy6ARDPwbXYlvSjvl5rObU_FwAAAA%3D%3D&q=https://thephysiocompany.co.uk/football-facts-and-tips/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 40
},
{
"title": "Athletic Club cruise to the final of the Copa del Rey after ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe5tHVhRECTGbt61ooO_JKUBTsXU2rqb-dPA&s",
"source": "www.instagram.com",
"original": "https://lookaside.instagram.com/seo/google_widget/crawler/?media_id=3313720168890775376",
"link": "https://www.instagram.com/brfootball/p/C38svJey8Om/",
"original_height": 2010,
"original_width": 1608,
"original_size": "1.5MB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYIpKjzyYD1qenzARCviajikKq0yNQBmUOJDBgAAAA%3D&q=https://www.instagram.com/brfootball/p/C38svJey8Om/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 41
},
{
"title": "Wilson CFL Official Game Football - Top Quality & Durability",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTdCxnHgXDLTuT8h295CeBbno48s03LBR9THg&s",
"source": "www.marchants.com",
"original": "https://cdn11.bigcommerce.com/s-nehqfptb/images/stencil/1280x1280/products/42020/75560/Wilson-CFL-Official-Game-Football-Top-View__80189.1718051399.jpg?c=2",
"link": "https://www.marchants.com/WilsonCflOfficialGameFootball",
"original_height": 1280,
"original_width": 1280,
"original_size": "285KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Tjdc6Zt3rLe92wC8w_8m9vfNfVkAgDIXRLtFgAAAA%3D%3D&q=https://www.marchants.com/WilsonCflOfficialGameFootball&ctx=iv&hl=en-US",
"is_product": true,
"rank": 42
},
{
"title": "Are You Ready for Some (American) Football?",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGTybIEH6wfj9oodI9aud_uAqVOkksCVREVA&s",
"source": "www.tcu.edu",
"original": "https://www.tcu.edu/news/images/InternationalFootball101-news-mobile.jpg",
"link": "https://www.tcu.edu/news/2023/are-you-ready-for-some-american-football.php",
"original_height": 640,
"original_width": 640,
"original_size": "59KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUI88HYpZuwofFDEKW1v8H4uLXiqQFHLI34FwAAAA%3D%3D&q=https://www.tcu.edu/news/2023/are-you-ready-for-some-american-football.php&ctx=iv&hl=en-US",
"is_product": false,
"rank": 43
},
{
"title": "Football and Futsal Opportunities | Kent Sport - Kent Sport ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS2Iuv0cSp-YVn4w_2QIs70WtL6pPHm25WquA&s",
"source": "www.kent.ac.uk",
"original": "https://media.www.kent.ac.uk/se/32772/VideoStill_1920w.jpg",
"link": "https://www.kent.ac.uk/sports/sports-recreation/football-and-futsal",
"original_height": 1280,
"original_width": 1920,
"original_size": "233KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYItq-fjMHcp7-UARDNo6iHiNeWpKUB9_QXThgAAAA%3D&q=https://www.kent.ac.uk/sports/sports-recreation/football-and-futsal&ctx=iv&hl=en-US",
"is_product": false,
"rank": 44
},
{
"title": "The NFL's Most Valuable Teams 2024",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgMcrGcUd2NF3i-ECp7nUo0NbcyxteI-kG_A&s",
"source": "www.forbes.com",
"original": "https://imageio.forbes.com/specials-images/imageserve/66cf873b91d6436939a37dd4/1x1-dallas-cowboys-credit-Ron-Jenkins-getty-images/0x0.jpg?format=jpg&height=1080&width=1080",
"link": "https://www.forbes.com/sites/justinteitelbaum/2024/08/29/the-nfls-most-valuable-teams-2024/",
"original_height": 1080,
"original_width": 1080,
"original_size": "110KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYInN-Lt-6gmrGoARDJzdvyvLSguaoBwcA9UxgAAAA%3D&q=https://www.forbes.com/sites/justinteitelbaum/2024/08/29/the-nfls-most-valuable-teams-2024/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 45
},
{
"title": "Football - Ball State University Athletics",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR6Wl_sdKFxhtaKJpAHsuLuVcU6wwsfyUoJzA&s",
"source": "ballstatesports.com",
"original": "https://ballstatesports.com/images/2024/12/16/ball_20240928-BSU_JMU-FB-0J7A6298.jpg?width=776&height=437&mode=crop&format=jpg&quality=80",
"link": "https://ballstatesports.com/sports/football",
"original_height": 437,
"original_width": 776,
"original_size": "50KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIxYWT2pz5xd7pARDA1r_9w9C__xyMooLiFwAAAA%3D%3D&q=https://ballstatesports.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 46
},
{
"title": "5,654 American Football High Res Vector Graphics - Getty ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTt1f74rcc09yT-v-Q-iSbvw9e10KNf0mLYUg&s",
"source": "www.gettyimages.com",
"original": "https://media.gettyimages.com/id/165687171/vector/clip-art-of-an-american-football-on-a-white-background.jpg?s=612x612&w=gi&k=20&c=J9N7Fw34gV2DkSzoAI0XnD_9IG-0Y68Jitg7dLHi02U=",
"link": "https://www.gettyimages.com/vectors/american-football",
"original_height": 387,
"original_width": 612,
"original_size": "44KB",
"know_more_link": 0,
"is_product": false,
"rank": 47
},
{
"title": "Football - University of North Carolina Athletics",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTv8zCM2LmFTEfLVRnHyO2nEgowY9YcfD8FsA&s",
"source": "goheels.com",
"original": "https://images.sidearmdev.com/crop?url=https%3A%2F%2Fd141rwalb2fvgk.cloudfront.net%2Fimages%2F2024%2F11%2F16%2Fhuddle.wfu.976.jpg&width=1092&height=614&type=webp",
"link": "https://goheels.com/sports/football",
"original_height": 614,
"original_width": 1092,
"original_size": "123KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIu5qQ8L7S0ZeGARDR7qbS_6Tlpz_lLY-TFwAAAA%3D%3D&q=https://goheels.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 48
},
{
"title": "NCAA College Football news, scores, stats and FBS rankings ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTqiUQ0iX99ScJg99sx70TRWoSYNrvlNkJ9cA&s",
"source": "www.ncaa.com",
"original": "https://www.ncaa.com/_flysystem/public-s3/styles/stax_large_content_tile/public-s3/images/2025-01/TexasVsOhioState_SBS.jpg?h=3086d3f1&itok=dIptge7z",
"link": "https://www.ncaa.com/sports/football/fbs",
"original_height": 450,
"original_width": 800,
"original_size": "53KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUI-oL2y9iukJ0wEOztwuvWmvC5nQFeUTXBFwAAAA%3D%3D&q=https://www.ncaa.com/sports/football/fbs&ctx=iv&hl=en-US",
"is_product": false,
"rank": 49
},
{
"title": "What Tapes Do Football Players Use? An overview",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRgZTearUIC6aviVEzFfc0Cx0y3FtZ5ynW0yg&s",
"source": "sporttape.co.uk",
"original": "http://sporttape.co.uk/cdn/shop/articles/18_7c7360a8-bde1-4c96-bcbd-b4038524966e.jpg?v=1734451660&width=2048",
"link": "https://sporttape.co.uk/blogs/news/what-tapes-do-football-players-use",
"original_height": 1500,
"original_width": 1500,
"original_size": "281KB",
"know_more_link": "https://lh3.googleusercontent.com/proxy/sHmMW5w4Enoryx7KIRhhpBKszMwslkQZaE1YXQ3BnMbi5U6bpSVlpOXdIxpC_KNlMa3qnlsQz4i7P4CnlppwbXnERy3yDW65vKvETxomIKvGVgzsAwKxfMgtyGYKmUjYyRGl03ncb7707qiezNCJRRb8Zl4lh0bVPo9oqNfBAA",
"is_product": false,
"rank": 50
},
{
"title": "Just Ask Amazon: Streaming Football Games Is Way Harder Than ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR8bxVS8LBP0C_YyzD1F4UWI4HAqxUSLw4mkw&s",
"source": "www.wired.com",
"original": "https://media.wired.com/photos/5a3af51805f16a0c504434ee/master/pass/football-FA.jpg",
"link": "https://www.wired.com/story/streaming-football-games-is-harder-than-it-looks/",
"original_height": 1600,
"original_width": 2400,
"original_size": "674KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4WhpOTX9-awtnyUFPl2bfOnopuXXYwAL19imFgAAAA%3D%3D&q=https://www.wired.com/story/streaming-football-games-is-harder-than-it-looks/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 51
},
{
"title": "Football Boots & Football Kits - New Balance",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRoy5JYrIgNQZNljUV4GRv2Y9V62pO2XNjbpA&s",
"source": "www.newbalance.co.uk",
"original": "https://www.newbalance.co.uk/dw/image/v2/AASY_PRD/on/demandware.static/-/Library-Sites-NBUK-NBEU/default/dw1fb6c4f5/images/page-designer/2024/October/FootballCLP-CompJ_Crop.jpg",
"link": "https://www.newbalance.co.uk/sport/football/",
"original_height": 1918,
"original_width": 1918,
"original_size": "506KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Vjc2zv_6arbR_IEJm-Y_upZ04qZTADEvxh_FgAAAA%3D%3D&q=https://www.newbalance.co.uk/sport/football/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 52
},
{
"title": "Football - Illinois State University Athletics",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRvbzDbSgSfP9PTv25jtdpadn3sAwihGCRyUw&s",
"source": "goredbirds.com",
"original": "https://goredbirds.com/images/2024/12/11/Ryan.png?width=1416&height=797&mode=crop&scale=both&format=jpg&quality=80",
"link": "https://goredbirds.com/sports/football",
"original_height": 797,
"original_width": 1416,
"original_size": "61KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Zh2dOXdHfc65l9mFPjz8sW2tWeaGgMApBPO5RcAAAA%3D&q=https://goredbirds.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 53
},
{
"title": "Association football - Wikipedia",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcShKrmT24KUNeXJhdjywlNg_H0-pZtPD-lpEg&s",
"source": "en.wikipedia.org",
"original": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Football_in_Bloomington%2C_Indiana%2C_1995.jpg/800px-Football_in_Bloomington%2C_Indiana%2C_1995.jpg",
"link": "https://en.wikipedia.org/wiki/Association_football",
"original_height": 545,
"original_width": 800,
"original_size": "112KB",
"know_more_link": 1,
"is_product": false,
"rank": 54
},
{
"title": "Texas vs Florida football: 5 things to know about the Gators",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRHCa7GRgRmScQlFKkyKBZ1VJDW4Hr32Fefpw&s",
"source": "www.statesman.com",
"original": "https://www.statesman.com/gcdn/authoring/authoring-images/2024/11/03/NAAS/76022205007-usatsi-24539825.jpg?width=1733&height=1156&fit=crop&format=pjpg&auto=webp",
"link": "https://www.statesman.com/story/sports/college/longhorns/football/2024/11/04/texas-vs-florida-football-5-things-to-know-about-gators/75877082007/",
"original_height": 1156,
"original_width": 1733,
"original_size": "195KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYIxPXLhbeg6ueWARDU1cTE0cTSx9sBPwYU_xgAAAA%3D&q=https://www.statesman.com/story/sports/college/longhorns/football/2024/11/04/texas-vs-florida-football-5-things-to-know-about-gators/75877082007/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 55
},
{
"title": "Is It Possible To Become a Good Football Player Within a Year?",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR-V9u3arA4_vSE-OdyPsPPr8XPMfLjihUFlA&s",
"source": "xflnewshub.com",
"original": "https://nhfantasystorage.blob.core.windows.net/xflnewshub-storage/2022/10/1.jpg",
"link": "https://xflnewshub.com/extra/is-it-possible-to-become-a-good-football-player-within-a-year/",
"original_height": 1350,
"original_width": 2400,
"original_size": "590KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5ZjW0tL063Xb0TCBw1dWzX2zuvX2JEYAht4aKhcAAAA%3D&q=https://xflnewshub.com/extra/is-it-possible-to-become-a-good-football-player-within-a-year/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 56
},
{
"title": "USA Football | The Sport's Governing Body",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKpbZNxaL44d2efiPDBrXkf52RcwRI9HvTBQ&s",
"source": "www.usafootball.com",
"original": "https://www.usafootball.com/_next/image?url=https%3A%2F%2Fsquidex.usafootball.com%2Fapi%2Fassets%2Fusawebsite%2F758f0f5e-f56f-4452-a502-6343db763741%2F%3Fwidth%3D800%26height%3D800%26mode%3Dcrop&w=1200&q=75",
"link": "https://www.usafootball.com/",
"original_height": 800,
"original_width": 800,
"original_size": "195KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Th_Y_uSTVf3LkgQ6Hi452pP47rX3YwAbTBhXRcAAAA%3D&q=https://www.usafootball.com/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 57
},
{
"title": "Football Program at The Sports School - The Sports School",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQSs_bwKK_7ZxCjc6quqNa7xSmN8wceKtV2-A&s",
"source": "thesportsschool.com",
"original": "https://thesportsschool.com/wp-content/uploads/2020/06/216-scaled-1.jpg",
"link": "https://thesportsschool.com/football-program-at-the-sports-school/",
"original_height": 1707,
"original_width": 2560,
"original_size": "334KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5rized_Rj5OOfwkWeNmy7sXkzt-CAPV-Qm4VAAAA&q=https://thesportsschool.com/football-program-at-the-sports-school/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 58
},
{
"title": "The Decline Of Football Is Real And It's Accelerating",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRm4WURgUbVHJ9Q06Q0h2LWHo8jiB5SrwfVRw&s",
"source": "www.forbes.com",
"original": "https://imageio.forbes.com/specials-images/imageserve/f8daa0af7e434237bdce15dd97e2cff0/TITANS-CHIEFS-MAHOMES/960x0.jpg?format=jpg&width=960",
"link": "https://www.forbes.com/sites/rogerpielke/2020/01/28/the-decline-of-football-is-real-and-its-accelerating/",
"original_height": 639,
"original_width": 959,
"original_size": "60KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4fi0t3_hrT-XJ-kLLH7X3rZj_rNXQQD6cM4fFgAAAA%3D%3D&q=https://www.forbes.com/sites/rogerpielke/2020/01/28/the-decline-of-football-is-real-and-its-accelerating/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 59
},
{
"title": "agap2IT Portugal's new take on football! - agap2",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCEuiCmjqaRUAIfDSeG-H4qRR4edrR6KBbWw&s",
"source": "agap2.com",
"original": "https://agap2.com/files/2022/09/adobestock-281129069-2048x1367.jpeg-1070x600.webp",
"link": "https://agap2.com/agap2it-portugals-new-take-on-football/",
"original_height": 600,
"original_width": 1070,
"original_size": "98KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5bg-r2f_wlW31kcIPF1xZsGdY-3d7xgBw_8tshcAAAA%3D&q=https://agap2.com/agap2it-portugals-new-take-on-football/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 60
},
{
"title": "What Education Is Needed to Become a Professional Football ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRYK2d-JU6-YmiiIfN4OcMIA4qpacNG8FZFTQ&s",
"source": "discover.sportsengineplay.com",
"original": "https://discover.sportsengineplay.com/sites/default/files/styles/content_1024_w/public/images/shutterstock_722307685.jpg?itok=KcS3wWAp",
"link": "https://discover.sportsengineplay.com/article/football/what-education-needed-become-professional-football-player",
"original_height": 633,
"original_width": 1000,
"original_size": "133KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Wh6fuNwy7--94wCd6asnt406-RzHwBfSgDlFgAAAA%3D%3D&q=https://discover.sportsengineplay.com/article/football/what-education-needed-become-professional-football-player&ctx=iv&hl=en-US",
"is_product": false,
"rank": 61
},
{
"title": "Nebraska (NSAA) high school football scores, live updates ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSWyWJg9Kyuzr1-itjOajh09nKv1KFJDFihKQ&s",
"source": "www.si.com",
"original": "https://images2.minutemediacdn.com/image/upload/c_crop,w_4923,h_2769,x_0,y_0/c_fill,w_720,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/high_school/01jd99zbp016srgp0ryy.jpg",
"link": "https://www.si.com/high-school/nebraska/nebraska-nsaa-high-school-football-scores-live-updates-2024-playoffs-state-championship-finals-11-22-2024-01jd99f255q3",
"original_height": 405,
"original_width": 720,
"original_size": "35KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYIuca2tKTXvb78ARCajoiIyJj73L4B3K_gthgAAAA%3D&q=https://www.si.com/high-school/nebraska/nebraska-nsaa-high-school-football-scores-live-updates-2024-playoffs-state-championship-finals-11-22-2024-01jd99f255q3&ctx=iv&hl=en-US",
"is_product": false,
"rank": 62
},
{
"title": "https://olemisssports.com/sports/football",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQr0zv4PYchF5Di9K8Dp4bcd-OxBgS4CMxGmw&s",
"source": "olemisssports.com",
"original": "https://images.sidearmdev.com/crop?url=https%3A%2F%2Fdxbhsrqyrr690.cloudfront.net%2Fsidearm.nextgen.sites%2Folemisssports.com%2Fimages%2F2025%2F1%2F7%2Fezgif-2-8e514ac1a3.jpg&width=540&height=304&type=webp",
"link": "TF0F-YXcpf1ohM",
"original_height": 304,
"original_width": 540,
"original_size": "16KB",
"know_more_link": 0,
"is_product": false,
"rank": 63
},
{
"title": "Football | The Players' Tribune | The Voice of the Game",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ1FJWLaK2JqjStRJUa0AZJ6WwGCF7i5BLn7g&s",
"source": "www.theplayerstribune.com",
"original": "https://images2.minutemediacdn.com/image/upload/c_crop,w_5112,h_2875,x_0,y_43/c_fill,w_360,ar_16:9,f_auto,q_auto,g_auto/images/voltaxMediaLibrary/mmsport/theplayertribune/01j6zd00f0kc9gb8qgsk.jpg",
"link": "https://www.theplayerstribune.com/sports/football",
"original_height": 203,
"original_width": 360,
"original_size": "17KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIt_TE-LvVzqbUARDup5L-69zQs25fOJ7dFwAAAA%3D%3D&q=https://www.theplayerstribune.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 64
},
{
"title": "Wall Art Print | Vintage American Football Poster: Iconic ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRZdv79dbDvcDomylC0Icfw9MkrVfAn-e0fdA&s",
"source": "www.abposters.com",
"original": "https://storage.googleapis.com/pod_public/750/235646.jpg",
"link": "https://www.abposters.com/vintage-american-football-poster-iconic-illustration-v169498",
"original_height": 750,
"original_width": 493,
"original_size": "118KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYIvtq809fxkZS7ARCy4pbVmID-k7YBJ70r4xgAAAA%3D&q=https://www.abposters.com/vintage-american-football-poster-iconic-illustration-v169498&ctx=iv&hl=en-US",
"is_product": false,
"rank": 65
},
{
"title": "Who's the Fastest NFL Player in 2024-2025 Season? | NBC Insider",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRNVZjHYCZnqYpkV_1auk8sRwx2TLadELqReg&s",
"source": "www.nbc.com",
"original": "https://www.nbc.com/sites/nbcblog/files/2024/08/dk-metcalf.jpg",
"link": "https://www.nbc.com/nbc-insider/whos-the-fastest-player-in-the-nfl",
"original_height": 1217,
"original_width": 1825,
"original_size": "1.5MB",
"know_more_link": 0,
"is_product": false,
"rank": 66
},
{
"title": "Florida High School Athletic Association",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRE9mN5BgBaxwFeczH7TC_MKaetrAAVInKRWA&s",
"source": "fhsaa.com",
"original": "https://fhsaa.com/images/2024/12/10/Football_KBYG_Image_Inside_Matt_Christopher.png?width=1416&height=797&mode=crop&format=jpg&quality=80",
"link": "https://fhsaa.com/index.aspx?path=football",
"original_height": 797,
"original_width": 1416,
"original_size": "169KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIluGzucyY0sOfARDWkfSEk-iPyysKxKTTFwAAAA%3D%3D&q=https://fhsaa.com/index.aspx?path%3Dfootball&ctx=iv&hl=en-US",
"is_product": false,
"rank": 67
},
{
"title": "Buy Football Wallpaper for wall Online in India - Magicdecor",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQy9-Iyz0PPRcQ9nuo449LKeBqeqwaX60k81A&s",
"source": "magicdecor.in",
"original": "https://cdn.magicdecor.in/com/2024/05/22173454/Football-Abstract-Design-Wallpaper-Mural-710x488.jpg",
"link": "https://magicdecor.in/collections/football-wallpaper-for-wall/",
"original_height": 488,
"original_width": 710,
"original_size": "77KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIwcbs2IKx9fPpARDD2a7C6-Oh4TLIEGHsFwAAAA%3D%3D&q=https://magicdecor.in/collections/football-wallpaper-for-wall/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 68
},
{
"title": "Football - University of Michigan Athletics",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRpI3Q1tJrDVAc2Zb1FxopCJndVmK-QWtmIcg&s",
"source": "mgoblue.com",
"original": "https://images.sidearmdev.com/crop?url=https%3A%2F%2Fd4njeax0ev936.cloudfront.net%2Fimages%2F2024%2F12%2F31%2F20241231-fbl-marshall.jpg&width=540&height=540&type=webp",
"link": "https://mgoblue.com/sports/football",
"original_height": 540,
"original_width": 540,
"original_size": "31KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEWAOn_ChQI8PbBxeSUzvggEO-nrpTuhey3HYM2jZcWAAAA&q=https://mgoblue.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 69
},
{
"title": "South Jersey Mean 15 football rankings following Week 7 action",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLTS7LnJlboS-EvAOoYvpkj2sH4vyJ8hpHmg&s",
"source": "www.courierpostonline.com",
"original": "https://www.courierpostonline.com/gcdn/presto/2018/09/04/PCHH/308983ee-1f0e-475c-84eb-dd3467963f00-635787293743493871-453653643.jpg?width=1200&disable=upscale&format=pjpg&auto=webp",
"link": "https://www.courierpostonline.com/story/sports/high-school/football/2024/10/20/south-jersey-mean-15-football-rankings-following-week-7-action/75690272007/",
"original_height": 401,
"original_width": 534,
"original_size": "24KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Zj_8NCpG-37N_IKdB2fd6J9x7yeKgCyMACCFgAAAA%3D%3D&q=https://www.courierpostonline.com/story/sports/high-school/football/2024/10/20/south-jersey-mean-15-football-rankings-following-week-7-action/75690272007/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 70
},
{
"title": "Buy Sport-Thieme American Football “American” - Sport-Thieme",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTpZC3HPoKW4iCucAV-XbG6hbyB6Jnwyxx62A&s",
"source": "www.sport-thieme.com",
"original": "https://pimage.sport-thieme.com/?file=271-4426&format=jpg&fillscale=500%2C500%2Ctransparent&quality=85",
"link": "https://www.sport-thieme.com/Balls/American-Football/art=2714400",
"original_height": 500,
"original_width": 500,
"original_size": "67KB",
"know_more_link": 0,
"is_product": false,
"rank": 71
},
{
"title": "I Won't Be Watching the Super Bowl Because I Think Football ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT7Q__YREOUfW2d9F2Ff47Po3vqJE50qpYWcQ&s",
"source": "www.teenvogue.com",
"original": "https://assets.teenvogue.com/photos/63e3e7beb504ab68f0f8760c/4:3/w_2664,h_1998,c_limit/GettyImages-1463476488.jpg",
"link": "https://www.teenvogue.com/story/football-is-too-dangerous-to-exist",
"original_height": 1998,
"original_width": 2664,
"original_size": "897KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Tj8o-P-ohsNF18zCkxq3jlx6rIPZ9wA5_X7QBcAAAA%3D&q=https://www.teenvogue.com/story/football-is-too-dangerous-to-exist&ctx=iv&hl=en-US",
"is_product": false,
"rank": 72
},
{
"title": "Nighttime American Football Stadium Wall Mura - Murals Your Way",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSXjKrUwk51akQ30c_LUJGtOkIuIuxCbcW0iQ&s",
"source": "www.muralsyourway.com",
"original": "https://muralsyourway.vtexassets.com/arquivos/ids/240981/Football-Stadium-Wallpaper-Mural.jpg?v=638164439006100000",
"link": "https://www.muralsyourway.com/american-football-stadium-33283620/p",
"original_height": 2398,
"original_width": 3200,
"original_size": "3.7MB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUI_oKk4Mf7icBCELz0rreb0t2_qAHB1AzrFwAAAA%3D%3D&q=https://www.muralsyourway.com/american-football-stadium-33283620/p&ctx=iv&hl=en-US",
"is_product": false,
"rank": 73
},
{
"title": "EA SPORTS™ College Football 25",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTkcb4VvaFQkXcxhWt51V3mKSzGJR6p3QaKEg&s",
"source": "store.playstation.com",
"original": "https://image.api.playstation.com/vulcan/ap/rnd/202408/2112/090df34548fde27a47c280bd2d02fa45fa6b9d44dfb7e6af.png?w=440",
"link": "https://store.playstation.com/en-us/concept/10003151",
"original_height": 250,
"original_width": 444,
"original_size": "26KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS45jz6FX36_2vTmxmFGjbfHnOy94J_fsYAf4dQRAYAAAA&q=https://store.playstation.com/en-us/concept/10003151&ctx=iv&hl=en-US",
"is_product": false,
"rank": 74
},
{
"title": "Ball (association football) - Wikipedia",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQcSJ-IbCSJAy9q-ZT3sd91dwVxtBZ7m9WAXw&s",
"source": "en.wikipedia.org",
"original": "https://upload.wikimedia.org/wikipedia/commons/1/1d/Football_Pallo_valmiina-cropped.jpg",
"link": "https://en.wikipedia.org/wiki/Ball_(association_football)",
"original_height": 285,
"original_width": 296,
"original_size": "163KB",
"know_more_link": 1,
"is_product": false,
"rank": 75
},
{
"title": "Football - University of Tennessee Athletics",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTUOUye2nPH1GfcyBVL1QqcYEf9PxlQ_GSy2g&s",
"source": "utsports.com",
"original": "https://dudh74xyv196a.cloudfront.net/images/2024/12/22/vs._OSU_Recap.png?width=1024&height=576&mode=crop&scale=both&format=jpg&quality=80",
"link": "https://utsports.com/sports/football",
"original_height": 576,
"original_width": 1024,
"original_size": "67KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5fjX8eJG39KT20IFFj09MWHHxtYHexkB6O1MwxcAAAA%3D&q=https://utsports.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 76
},
{
"title": "College Football's Messy, Bumpy, Worrisome Return | The New ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSi4B5ADioROj8toAiLx26JMOEM2SZkj-xApw&s",
"source": "www.newyorker.com",
"original": "http://media.newyorker.com/photos/5f441cfeaf580809467117ad/master/pass/Thomas-CollegeFootball.jpg",
"link": "https://www.newyorker.com/sports/sporting-scene/college-footballs-messy-bumpy-worrisome-return",
"original_height": 1839,
"original_width": 2560,
"original_size": "526KB",
"know_more_link": "https://lh5.googleusercontent.com/proxy/SLQngmmjKHsKXcn-RaasBn5LaFpBvGGsQl5cYK56AUAc02c0NRlU7rWMywCVlO8ojxbSwnYEHsmMulGKL7ucynM6Kd8NzFtK7wkOcdi6YoWqW35bvz4RBB7w0TEbVkh3Su7-bEYb7iDqS6ARAgfVKg9NyVQ",
"is_product": false,
"rank": 77
},
{
"title": "Football: Olympic history, rules, latest updates and ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIPzOKfk9G04HftHqhi9gc0h_sfPZj4uh3Kw&s",
"source": "olympics.com",
"original": "https://img.olympics.com/images/image/private/t_social_share_thumb/f_auto/primary/qjxgsf7pqdmyqzsptxju",
"link": "https://olympics.com/en/sports/football/",
"original_height": 630,
"original_width": 1200,
"original_size": "104KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Zi-7NfPzq6Px08yCnTNuL781vNjH5kBb0-XIhcAAAA%3D&q=https://olympics.com/en/sports/football/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 78
},
{
"title": "Football - University of Tennessee Athletics",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRtP4olM5ik_2Iuv9VxKySmTqeCGPyZFK099w&s",
"source": "utsports.com",
"original": "https://dudh74xyv196a.cloudfront.net/images/2024/12/27/498069_20241019_FB_Alabama_AF_302.jpg?width=1024&height=576&mode=crop&scale=both&format=jpg&quality=80",
"link": "https://utsports.com/sports/football",
"original_height": 576,
"original_width": 1024,
"original_size": "91KB",
"know_more_link": 0,
"is_product": false,
"rank": 79
},
{
"title": "Five famous football players who fled war | International ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRyWAHg-x-CDFcKvnSReNrlgw8CcuD0jdW7Kg&s",
"source": "www.rescue.org",
"original": "https://www.rescue.org/sites/default/files/styles/portrait_3x4_928px_wide/public/2022-11/Alphonso_Davies_2018%20%281%29%E2%80%93Edited-no%20number.jpg?itok=-877Hr8n",
"link": "https://www.rescue.org/article/five-famous-football-players-who-fled-war",
"original_height": 1237,
"original_width": 928,
"original_size": "164KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Th8tm31raX7H9xjFPjY0_lu3c3FB80AMtwDOBcAAAA%3D&q=https://www.rescue.org/article/five-famous-football-players-who-fled-war&ctx=iv&hl=en-US",
"is_product": false,
"rank": 80
},
{
"title": "NFL Thursday Night Football 2024 tonight: Watch Patriots ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT82rRPh_i_dnjh2-dhojlen_sCzRV99nRNEA&s",
"source": "www.courier-journal.com",
"original": "https://www.courier-journal.com/gcdn/authoring/images/smg/2024/09/18/SMGW/71018610007-USATSI_21496362.jpeg?crop=3581,2014,x0,y186&width=660&height=371&format=pjpg&auto=webp",
"link": "https://www.courier-journal.com/story/sports/nfl/2024/09/19/nfl-games-today-2024-watch-jets-patriots-thursday-night-football-game-sept-19-week-3-schedule-tv/75278228007/",
"original_height": 371,
"original_width": 660,
"original_size": "50KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Vj5aNLLD18XzLIWmLu0c-W5aacbsgCrN_83FgAAAA%3D%3D&q=https://www.courier-journal.com/story/sports/nfl/2024/09/19/nfl-games-today-2024-watch-jets-patriots-thursday-night-football-game-sept-19-week-3-schedule-tv/75278228007/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 81
},
{
"title": "America Ruined College Football. Now College Football Is ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRFJ2dcoo-Q-F5YM0hKGAN1qXp7kSCg9wSfKg&s",
"source": "www.theatlantic.com",
"original": "https://cdn.theatlantic.com/thumbor/aRj1Wv5nw9yNgNxCIfHcSYTrnBI=/64x454:1264x1354/1200x900/media/img/mt/2022/11/FootballV2/original.jpg",
"link": "https://www.theatlantic.com/ideas/archive/2022/11/herschel-walker-tommy-tuberville-college-football-influence-politics/671998/",
"original_height": 900,
"original_width": 1200,
"original_size": "309KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Xi_Y92y01enrYsTmHmxdWLX0aNNFgAyEYCwFgAAAA%3D%3D&q=https://www.theatlantic.com/ideas/archive/2022/11/herschel-walker-tommy-tuberville-college-football-influence-politics/671998/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 82
},
{
"title": "Football rules: How to play the beautiful game",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7NjyS_l2kO9x0tcRgg1iIEU4ZeRWZJpg-Hw&s",
"source": "olympics.com",
"original": "https://img.olympics.com/images/image/private/t_s_pog_staticContent_hero_xl_2x/f_auto/primary/ngdjbafv3twathukjbq2",
"link": "https://olympics.com/en/news/how-to-play-football-rules-field-pitch-free-kick-penalty",
"original_height": 1372,
"original_width": 2440,
"original_size": "305KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUI2d-wqfqig-dkEIvKkLLf6pLdwQGlwoEcFwAAAA%3D%3D&q=https://olympics.com/en/news/how-to-play-football-rules-field-pitch-free-kick-penalty&ctx=iv&hl=en-US",
"is_product": false,
"rank": 83
},
{
"title": "Football League 2025 - Apps on Google Play",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSQBnleaDEx8-_IxWxO8lRPzYclZ67QGdUWRg&s",
"source": "play.google.com",
"original": "https://play-lh.googleusercontent.com/MdQuO3eGMwkERzTrxlbNfbDQdvQUL6Rey-fLFzwpFqMnCnWdeJxmP9RGxIxWGbf9CH0=w648-h364-rw",
"link": "https://play.google.com/store/apps/details?id=com.football.soccer.league",
"original_height": 364,
"original_width": 648,
"original_size": "254KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4bjW93zuhcVNX9ME_q7YfXnXh5cr3QDGzngMFgAAAA%3D%3D&q=https://play.google.com/store/apps/details?id%3Dcom.football.soccer.league&ctx=iv&hl=en-US",
"is_product": false,
"rank": 84
},
{
"title": "FORZA TD100 Football Game ball",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ0oWMpIqeyQhXGiOzHoOKVNHKHeCUSGpjUyw&s",
"source": "www.networldsports.com",
"original": "https://nwscdn.com/media/catalog/product/cache/h700xw700/t/d/td100offical.jpg",
"link": "https://www.networldsports.com/forza-td-100-football-game-ball.html",
"original_height": 700,
"original_width": 700,
"original_size": "118KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUI5I2u2Juixc-xARC3qpe-i-P9qSy5dCAXFwAAAA%3D%3D&q=https://www.networldsports.com/forza-td-100-football-game-ball.html&ctx=iv&hl=en-US",
"is_product": true,
"rank": 85
},
{
"title": "Maximum Football",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSRiKuAoZLS9F5tSzoViqRcDJJam8kh0GCa9Q&s",
"source": "store.playstation.com",
"original": "https://image.api.playstation.com/vulcan/ap/rnd/202308/2922/b574a6288d0de8dd7b89c2fa700633f695304c59ecea9ae5.jpg",
"link": "https://store.playstation.com/en-us/concept/10003464",
"original_height": 2160,
"original_width": 3840,
"original_size": "1.4MB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4fhzcGnznI59jY4CP5_s3HP2xeqfUQAdnqYCFgAAAA%3D%3D&q=https://store.playstation.com/en-us/concept/10003464&ctx=iv&hl=en-US",
"is_product": false,
"rank": 86
},
{
"title": "The Catch Rule in Football Explained",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSUIocZGSQSv7gOTO0Z5BQOO9nWJlXcTaIHFw&s",
"source": "www.refrsports.com",
"original": "https://cdn.prod.website-files.com/66842e04d18971242a294872/66b87ee1754fe5eef299b1ed_9.png",
"link": "https://www.refrsports.com/blog/the-catch-rule-in-football-explained",
"original_height": 600,
"original_width": 1296,
"original_size": "1.4MB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Vh17tmUz1v79zYyCizpXdWy_3TPIhcATyjgthcAAAA%3D&q=https://www.refrsports.com/blog/the-catch-rule-in-football-explained&ctx=iv&hl=en-US",
"is_product": false,
"rank": 87
},
{
"title": "17,600+ American Football Player Stock Photos, Pictures ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSsf0ZegNI15aUEh5Ert0ni1W6Z1mDTlG0vzA&s",
"source": "www.istockphoto.com",
"original": "https://media.istockphoto.com/id/657516944/photo/american-football-player-man-isolated.jpg?s=612x612&w=0&k=20&c=OrM74unB4V-L58_7-OFPBY-vC4KSF2Eyxv-qHzeT3Io=",
"link": "https://www.istockphoto.com/photos/american-football-player",
"original_height": 561,
"original_width": 612,
"original_size": "37KB",
"know_more_link": 0,
"is_product": false,
"rank": 88
},
{
"title": "Football governance | Institute for Government",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMGK-UKHYB9HVYEdsfXFtzd3OelBQVFfgmNg&s",
"source": "www.instituteforgovernment.org.uk",
"original": "https://www.instituteforgovernment.org.uk/sites/default/files/styles/16_9_desktop/public/2023-03/premier-league-football-1504x846px.jpg?h=dd1b06b1&itok=3dihrnpr",
"link": "https://www.instituteforgovernment.org.uk/explainer/football-governance",
"original_height": 588,
"original_width": 1044,
"original_size": "68KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEYAOf_ChYI18XA4M7Wk-3RARDyhfu4v6iz39gBGUOK5BgAAAA%3D&q=https://www.instituteforgovernment.org.uk/explainer/football-governance&ctx=iv&hl=en-US",
"is_product": false,
"rank": 89
},
{
"title": "Football - UTEP Miners",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEC4L6St0NXSOxtdWVkyru1R1xyDKjwwKxvA&s",
"source": "utepminers.com",
"original": "https://i.ytimg.com/vi/8EhnWLlsH_w/maxresdefault.jpg",
"link": "https://utepminers.com/sports/football",
"original_height": 720,
"original_width": 1280,
"original_size": "135KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUIhcyRwfXNrtPFARC04puZntT2rQVKsj4AFwAAAA%3D%3D&q=https://utepminers.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 90
},
{
"title": "Football - USF Athletics",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbPDGGfGBpzVsu1iHI1ZwTtKYBTSNlq5Ol_Q&s",
"source": "gousfbulls.com",
"original": "https://gousfbulls.com/images/2025/1/1/allselects.jpeg?width=540&height=304&mode=crop&scale=both&format=jpg&quality=80",
"link": "https://gousfbulls.com/sports/football",
"original_height": 304,
"original_width": 540,
"original_size": "27KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5Vh3_siCrd_mTQsU6D2_tbHrwZ2VzxkBknBojhcAAAA%3D&q=https://gousfbulls.com/sports/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 91
},
{
"title": "The Man Who “Completed Football” | The New Yorker",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZId782c6RFWPYky-DM5TW47RT5V1ji3-HKg&s",
"source": "www.newyorker.com",
"original": "https://media.newyorker.com/photos/6543f23235570d74bd3ef32e/1:1/w_1706,h_1706,c_limit/Akam-Pelly%20Ruddock%20Mpanzu.jpg",
"link": "https://www.newyorker.com/sports/sporting-scene/the-man-who-completed-football",
"original_height": 1706,
"original_width": 1706,
"original_size": "433KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS5fgx_93W9nOrD81gFNi_f_Ok3unrWvIBzVzLVRcAAAA%3D&q=https://www.newyorker.com/sports/sporting-scene/the-man-who-completed-football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 92
},
{
"title": "College Football Playoff rankings: Notre Dame rises, Alabama ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTElKuhPXE3tiH-C-lbfyPrBt9Ykzk8KkKPZg&s",
"source": "www.usatoday.com",
"original": "https://www.usatoday.com/gcdn/authoring/authoring-images/2024/11/20/USAT/76438251007-usatsi-24537208.jpg?crop=3423,2430,x374,y401&width=1200&disable=upscale&format=pjpg&auto=webp",
"link": "https://www.usatoday.com/story/sports/ncaaf/2024/11/26/college-football-playoff-rankings-notre-dame/76580754007/",
"original_height": 852,
"original_width": 1200,
"original_size": "133KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUI0NHu08WV47_pARD8kevvrYHH9Rq6hbdfFwAAAA%3D%3D&q=https://www.usatoday.com/story/sports/ncaaf/2024/11/26/college-football-playoff-rankings-notre-dame/76580754007/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 93
},
{
"title": "https://www.denverbroncos.com/",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSO27LHkPIGeuIN1dDWPaLmze7gq7ZqUVIenw&s",
"source": "www.denverbroncos.com",
"original": "https://static.clubs.nfl.com/image/upload/t_editorial_landscape_8_desktop_mobile/f_auto/broncos/kml9vjmi1xzri7bq0ecf.jpg",
"link": "9Aj87IJAjK8HCM",
"original_height": 464,
"original_width": 824,
"original_size": "72KB",
"know_more_link": 0,
"is_product": false,
"rank": 94
},
{
"title": "Football (soccer) | History, Game, Rules, & Significant ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRWRFj9GRGw3971Nh_mcO6vGCLG4jx11TJHAA&s",
"source": "www.britannica.com",
"original": "https://cdn.britannica.com/69/228369-050-0B18A1F6/Asian-Cup-Final-2019-Hasan-Al-Haydos-Qatar-Japan-Takumi-Minamino.jpg",
"link": "https://www.britannica.com/sports/football-soccer",
"original_height": 1122,
"original_width": 1600,
"original_size": "222KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4Zi6c9GJLy_bppsIfDvcvfVL49W2KABQbga4FgAAAA%3D%3D&q=https://www.britannica.com/sports/football-soccer&ctx=iv&hl=en-US",
"is_product": false,
"rank": 95
},
{
"title": "American football player sport photo | Premium AI-generated ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQUI4Yx-JFm5nY2k-f1mKXnf6TRwTmtMJjF2g&s",
"source": "www.freepik.com",
"original": "https://img.freepik.com/premium-photo/american-football-player-sport-photo_728472-2899.jpg",
"link": "https://www.freepik.com/premium-ai-image/american-football-player-sport-photo_64565049.htm",
"original_height": 626,
"original_width": 538,
"original_size": "49KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4bh__-edJys_HFIU6O8_87D50qUfKQDemc0bFgAAAA%3D%3D&q=https://www.freepik.com/premium-ai-image/american-football-player-sport-photo_64565049.htm&ctx=iv&hl=en-US",
"is_product": false,
"rank": 96
},
{
"title": "Football news, match reports and fixtures | The Guardian",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQPnxWShMctqzvG8ThAgvKV1R1SL0XCj0MK3w&s",
"source": "www.theguardian.com",
"original": "https://interactive.guim.co.uk/atoms/thrashers/2022/11/football-daily-thrasher/assets/v/1721122748492/football-daily-5-3.jpg",
"link": "https://www.theguardian.com/football",
"original_height": 307,
"original_width": 512,
"original_size": "13KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_-MS4zi0_OSTD83zDmxhFLjX2rvm-7fea8sYAWGViCsYAAAA&q=https://www.theguardian.com/football&ctx=iv&hl=en-US",
"is_product": false,
"rank": 97
},
{
"title": "American Football Explained | InterExchange",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRsQD3nFBYhQJKWV1x-JJG12GT7DjqMPOfxSA&s",
"source": "www.interexchange.org",
"original": "https://www.interexchange.org/wp-content/uploads/2023/10/football.jpeg",
"link": "https://www.interexchange.org/blog/hosts/american-football-explained/",
"original_height": 667,
"original_width": 1000,
"original_size": "206KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEXAOj_ChUItJzH5pHC87rZARCr6qaWxLHMs2CbSHfaFwAAAA%3D%3D&q=https://www.interexchange.org/blog/hosts/american-football-explained/&ctx=iv&hl=en-US",
"is_product": false,
"rank": 98
},
{
"title": "What Is The Difference Between American Football and Soccer ...",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR5xsJ_KfelTRTENZLerV-DyzwwsNzrrGw9Qg&s",
"source": "www.thehighlightsapp.com",
"original": "https://cdn.prod.website-files.com/624377e20c9e225e2e55e2ed/63f7c9ccf28d7d7ba5f1c1ff_football-1396740_1280.jpg",
"link": "https://www.thehighlightsapp.com/blog/soccer-football-differences",
"original_height": 855,
"original_width": 1280,
"original_size": "286KB",
"know_more_link": "https://www.google.com/search/about-this-image?img=H4sIAAAAAAAA_wEWAOn_ChQIsbDJxrve8sAUEMS9j56-yvOjR45nBEQWAAAA&q=https://www.thehighlightsapp.com/blog/soccer-football-differences&ctx=iv&hl=en-US",
"is_product": false,
"rank": 99
}
]
}
Last updated