Endpoint Playground
Test Crawlora's Cricinfo RSS API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/cricinfo/rss?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Official Cricinfo RSS feed URL |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/rss/livescores.xml",
"title": "Cricinfo Live Scores",
"count": 1,
"items": [
{
"id": "http://www.cricinfo.com/ci/engine/match/1551332.html",
"title": "Maiwand Champions 211/10 v Mah-e-Par Stars 197/10",
"url": "http://www.cricinfo.com/ci/engine/match/1551332.html"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a normalized public Cricinfo RSS feed. `url` must be one of Cricinfo's official news, live-score, country-story, or player-story RSS URLs.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.cricinfo.com/rss/livescores.xml",
"title": "Cricinfo Live Scores",
"count": 1,
"items": [
{
"id": "http://www.cricinfo.com/ci/engine/match/1551332.html",
"title": "Maiwand Champions 211/10 v Mah-e-Par Stars 197/10",
"url": "http://www.cricinfo.com/ci/engine/match/1551332.html"
}
]
}
}curl "https://api.crawlora.net/api/v1/cricinfo/rss?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"