Endpoint Playground
Test Crawlora's Get MLB standings 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/standings?type=regularSeason" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| season | integer | No | Four-digit season; defaults to current year | |
| type | string | No | regularSeason | Standings type |
{
"code": 200,
"data": {
"fetched_at": "sample",
"groups": [
{
"division": {
"id": 1,
"name": "sample"
},
"league": {
"id": 1,
"name": "sample"
},
"teams": [
{
"clinched": true,
"division_leader": true,
"division_rank": "sample",
"games_back": "sample",
"league_rank": "sample",
"losses": 1,
"run_differential": 1,
"runs_allowed": 1,
"runs_scored": 1,
"streak": "sample",
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"wild_card_games_back": "sample",
"winning_percentage": "sample",
"wins": 1
}
],
"type": "sample"
}
],
"season": 1,
"source_url": "https://example.com/resource",
"type": "sample"
},
"msg": "OK"
}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 American League and National League standings grouped by division. The type enum accepts `regularSeason`, `wildCard`, and `springTraining`.
{
"code": 200,
"data": {
"fetched_at": "sample",
"groups": [
{
"division": {
"id": 1,
"name": "sample"
},
"league": {
"id": 1,
"name": "sample"
},
"teams": [
{
"clinched": true,
"division_leader": true,
"division_rank": "sample",
"games_back": "sample",
"league_rank": "sample",
"losses": 1,
"run_differential": 1,
"runs_allowed": 1,
"runs_scored": 1,
"streak": "sample",
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"wild_card_games_back": "sample",
"winning_percentage": "sample",
"wins": 1
}
],
"type": "sample"
}
],
"season": 1,
"source_url": "https://example.com/resource",
"type": "sample"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/mlb/standings" \
-H "x-api-key: $CRAWLORA_API_KEY"