Criczop Cricket Feed API (RSS)
curl --request GET \
--url https://api.criczop.com/v1/cricket-feed/rss \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.criczop.com/v1/cricket-feed/rss"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.criczop.com/v1/cricket-feed/rss', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.criczop.com/v1/cricket-feed/rss",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.criczop.com/v1/cricket-feed/rss"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.criczop.com/v1/cricket-feed/rss")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.criczop.com/v1/cricket-feed/rss")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:media="http://search.yahoo.com/mrss/"
xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><![CDATA[Criczop Cricket Feed]]></title>
<link>https://www.criczop.com/</link>
<description><![CDATA[Stay ahead of the game with breaking cricket news, live match updates, player insights, and thrilling stories curated by Criczop.]]></description>
<atom:link href="https://api.criczop.com/v1/cricket-feed/rss" rel="self" type="application/rss+xml" />
<image>
<url>https://static.criczop.com/rss-feed-logo.png</url>
<title><![CDATA[Criczop Cricket Feed]]></title>
<link>https://www.criczop.com/</link>
</image>
<item>
<title><![CDATA[England vs India T20I: Smriti Mandhana Breaks Into Top 3 of ICC T20I Rankings After Historic Ton]]></title>
<link>https://www.criczop.com/cricket-news/england-vs-india-t20i-smriti-mandhana-breaks-into-top-3-of-icc-t20i-rankings-after-historic-ton</link>
<guid isPermaLink="false">6863ef58af718ddc1b4895a2</guid>
<description><![CDATA[ICC T20I rankings see Smriti Mandhana climb to 3rd spot after her maiden T20I century, becoming the first Indian to score tons in all three formats.]]></description>
<pubDate>Tue, 01 Jul 2025 03:15:01 +0530</pubDate>
<media:content url="https://static.platform.gamezop.com/cms/media/harry-brook-ind-vs-eng-1st-test.webp" type="image/webp" width="1200" height="800"></media:content>
</item>
</channel>
</rss>
Criczop Cricket Feed API
Criczop Cricket Feed API (RSS)
This page explains how to use the RSS version of the Criczop Cricket Feed API. The API returns an RSS 2.0 feed containing the latest items. Note that there is no pagination; it always returns the latest 100 (or fewer) items.
GET
/
v1
/
cricket-feed
/
rss
Criczop Cricket Feed API (RSS)
curl --request GET \
--url https://api.criczop.com/v1/cricket-feed/rss \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.criczop.com/v1/cricket-feed/rss"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.criczop.com/v1/cricket-feed/rss', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.criczop.com/v1/cricket-feed/rss",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.criczop.com/v1/cricket-feed/rss"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.criczop.com/v1/cricket-feed/rss")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.criczop.com/v1/cricket-feed/rss")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:media="http://search.yahoo.com/mrss/"
xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><![CDATA[Criczop Cricket Feed]]></title>
<link>https://www.criczop.com/</link>
<description><![CDATA[Stay ahead of the game with breaking cricket news, live match updates, player insights, and thrilling stories curated by Criczop.]]></description>
<atom:link href="https://api.criczop.com/v1/cricket-feed/rss" rel="self" type="application/rss+xml" />
<image>
<url>https://static.criczop.com/rss-feed-logo.png</url>
<title><![CDATA[Criczop Cricket Feed]]></title>
<link>https://www.criczop.com/</link>
</image>
<item>
<title><![CDATA[England vs India T20I: Smriti Mandhana Breaks Into Top 3 of ICC T20I Rankings After Historic Ton]]></title>
<link>https://www.criczop.com/cricket-news/england-vs-india-t20i-smriti-mandhana-breaks-into-top-3-of-icc-t20i-rankings-after-historic-ton</link>
<guid isPermaLink="false">6863ef58af718ddc1b4895a2</guid>
<description><![CDATA[ICC T20I rankings see Smriti Mandhana climb to 3rd spot after her maiden T20I century, becoming the first Indian to score tons in all three formats.]]></description>
<pubDate>Tue, 01 Jul 2025 03:15:01 +0530</pubDate>
<media:content url="https://static.platform.gamezop.com/cms/media/harry-brook-ind-vs-eng-1st-test.webp" type="image/webp" width="1200" height="800"></media:content>
</item>
</channel>
</rss>
Sample response
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:media="http://search.yahoo.com/mrss/"
xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><![CDATA[Criczop Cricket Feed]]></title>
<link>https://www.criczop.com/</link>
<description><![CDATA[Stay ahead of the game with breaking cricket news, live match updates, player insights, and thrilling stories curated by Criczop.]]></description>
<atom:link href="https://api.criczop.com/v1/cricket-feed/rss" rel="self" type="application/rss+xml" />
<image>
<url>https://static.criczop.com/rss-feed-logo.png</url>
<title><![CDATA[Criczop Cricket Feed]]></title>
<link>https://www.criczop.com/</link>
</image>
<item>
<title><![CDATA[England vs India T20I: Smriti Mandhana Breaks Into Top 3 of ICC T20I Rankings After Historic Ton]]></title>
<link>https://www.criczop.com/cricket-news/england-vs-india-t20i-smriti-mandhana-breaks-into-top-3-of-icc-t20i-rankings-after-historic-ton</link>
<guid isPermaLink="false">6863ef58af718ddc1b4895a2</guid>
<description><![CDATA[ICC T20I rankings see Smriti Mandhana climb to 3rd spot after her maiden T20I century, becoming the first Indian to score tons in all three formats.]]></description>
<pubDate>Tue, 01 Jul 2025 03:15:01 +0530</pubDate>
<media:content url="https://static.platform.gamezop.com/cms/media/harry-brook-ind-vs-eng-1st-test.webp" type="image/webp" width="1200" height="800"></media:content>
</item>
</channel>
</rss>
Authorizations
You can find the Bearer token for this API under Settings & Admin > API Tokens within the Gamezop Business Dashboard.
Response
HTTP 200 OK. Returns an RSS 2.0 feed.
RSS 2.0 feed response containing a channel and one or more item entries.
Top-level RSS channel containing metadata and the list of items.
Show child attributes
Show child attributes
Was this page helpful?
⌘I