/v1/news
Latest cricket news for a league
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/cricketlive-api/v1/news" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cricketlive-api/v1/news", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cricketlive-api/v1/news");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/cricketlive-api/v1/news",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"count": 50,
"articles": [
{
"link": "https://www.espn.com/cricket/story/_/id/48992933/ind-vs-afg-high-quality-saleem-impresses-six-extreme-heat-unhelpful-pitch",
"image": "https://a.espncdn.com/i/cricket/cricinfo/1539963_900x506.jpg",
"headline": "'High-quality' Saleem impresses with six-for despite extreme heat and unhelpful pitch",
"published": "2026-06-07T19:38:47Z",
"description": "Afghanistan quick bagged 6 for 140 and garnered praise from both his head coach Richard Pybus and Washington Sundar"
},
{
"link": "https://www.espn.com/cricket/story/_/id/48992662/eng-vs-nz-1st-test-england-enjoy-ugly-win-new-zealand-die-wondering",
"image": "https://a.espncdn.com/i/cricket/cricinfo/1539749_900x506.jpg",
"headline": "England enjoy ugly win as New Zealand die wondering",
"published": "2026-06-07T18:05:28Z",
"description": "Lord's Test blighted by the pitch but tourists should regret passive approach to run-scoring"
},
{
"link": "http://www.espn.com/cricket/series/8052/report/1513356/day/1/surrey-vs-hampshire-31st-match-8052",
"image": "https://a.espncdn.com/i/cricket/cricinfo/1540064_365x205.jpg",
"headline": "Dan Lawrence double-hundred puts Surrey in charge",
"published": "2026-06-07T18:05:55Z",
"description": "Hampshire made to toil after putting home side in, Lawrence and Pope putting on 255 for fourth wicket"
},
{
"link": "http://www.espn.com/cricket/series/8053/report/1512822/somerset-vs-warwickshire-central-west-group-8053",
"image": "https://a.espncdn.com/i/cricket/cricinfo/1540073_900x506.jpg",
"headline": "Webster's maiden T20 ton ends Warwickshire's winless Blast run",
"published": "2026-06-07T18:05:11Z",
"description": "Defending champions Somerset slip to fourth consecutive defeat despite posting 215"
},
{
"link": "http://www.espn.com/cricket/series/8053/report/1512820/middlesex-vs-essex-south-group-8053",
"image": "https://a.espncdn.com/i/cricket/cricinfo/1539122_900x506.jpg",
"headline": "Allison, Benkenstein give Eagles wings before Middlesex implode",
"published": "2026-06-07T17:52:39Z",
"description": "Noah Thain takes 3 for 11 as home side bundled out unceremoniously for fifth defeat in six"
},
{
"link": "http://www.espn.com/cricket/series/8053/report/1512824/nottinghamshire-vs-derbyshire-north-group-8053",
"image": "https://a.espncdn.com/i/cricket/cricinfo/1539091_900x506.jpg",
"headline": "Munsey, Haynes lay platform as Notts c
…