Endpoint Playground
Test Crawlora's MLB team statistics 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/mlb/team-stats?team_id=<team_id>&group=hitting" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| team_id | string | Yes | Numeric MLB team id | |
| season | integer | No | Four-digit season | |
| group | string | Yes | hitting | Statistics group |
{
"code": 200,
"data": {
"team_id": 147,
"season": 2026,
"group": "hitting",
"splits": []
}
}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 one team's season statistics. Group accepts `hitting`, `pitching`, and `fielding`.
{
"code": 200,
"data": {
"team_id": 147,
"season": 2026,
"group": "hitting",
"splits": []
}
}curl "https://api.crawlora.net/api/v1/mlb/team-stats?team_id=<team_id>&group=<group>" \
-H "x-api-key: $CRAWLORA_API_KEY"