Endpoint Playground
Test Crawlora's Cricinfo record table 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/records?record=<record>&class=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| record | string | Yes | Relative Statsguru record path | |
| class | integer | Yes | 1 | Record match-class. Allowed values: 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 20, 21, 22, 23 |
| id | string | No | Numeric record subject identifier | |
| type | string | No | Record subject type | |
| current | string | No | Record currentness selector |
{
"code": 200,
"msg": "OK",
"data": {
"record": "batting/most_runs_career.html",
"class": 1,
"headers": [
"player",
"span",
"mat",
"runs"
],
"rows": [
{
"player": "SR Tendulkar",
"span": "1989-2013",
"mat": "200",
"runs": "15921"
}
],
"count": 1
}
}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 bounded normalized table from a public Cricinfo records page. `record` is a relative Statsguru record path such as `batting/most_runs_career.html`. `class` must be one of `1`, `2`, `3`, `4`, `5`, `6`, `8`, `9`, `10`, `11`, `12`, `20`, `21`, `22`, or `23`.
{
"code": 200,
"msg": "OK",
"data": {
"record": "batting/most_runs_career.html",
"class": 1,
"headers": [
"player",
"span",
"mat",
"runs"
],
"rows": [
{
"player": "SR Tendulkar",
"span": "1989-2013",
"mat": "200",
"runs": "15921"
}
],
"count": 1
}
}curl "https://api.crawlora.net/api/v1/cricinfo/records?record=<record>&class=<class>" \
-H "x-api-key: $CRAWLORA_API_KEY"