Endpoint Playground
Test Crawlora's Get an MLB game feed 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/game?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric MLB game id |
{
"code": 200,
"data": {
"away_boxscore": {
"batters": [
1
],
"pitchers": [
1
],
"players_used": 1,
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"team_stats": {}
},
"decisions": {
"loser": {
"id": 1,
"name": "sample"
},
"save": {
"id": 1,
"name": "sample"
},
"winner": {
"id": 1,
"name": "sample"
}
},
"fetched_at": "sample",
"game": {
"away": {
"losses": 1,
"probable_pitcher": {
"id": 1,
"name": "sample"
},
"score": 1,
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"wins": 1
},
"day_night": "sample",
"double_header": "sample",
"game_date": "sample",
"game_number": 1,
"game_type": "sample",
"home": {
"losses": 1,
"probable_pitcher": {
"id": 1,
"name": "sample"
},
"score": 1,
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"wins": 1
},
"id": 1,
"official_date": "sample",
"scheduled_innings": 1,
"season": "sample",
"series_description": "sample",
"status": {
"abstract": "sample",
"code": "sample",
"detailed": "sample",
"reason": "sample"
},
"venue": {
"id": 1,
"name": "sample"
}
},
"home_boxscore": {
"batters": [
1
],
"pitchers": [
1
],
"players_used": 1,
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"team_stats": {}
},
"linescore": {
"away_errors": 1,
"away_hits": 1,
"away_runs": 1,
"current_inning": 1,
"home_errors": 1,
"home_hits": 1,
"home_runs": 1,
"inning_state": "sample",
"innings": [
{
"away_errors": 1,
"away_hits": 1,
"away_runs": 1,
"home_errors": 1,
"home_hits": 1,
"home_runs": 1,
"number": 1
}
],
"scheduled_innings": 1
},
"source_url": "https://example.com/resource"
},
"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 a compact MLB game feed with status, teams, score, innings, probable pitchers, decisions, and team box-score totals.
{
"code": 200,
"data": {
"away_boxscore": {
"batters": [
1
],
"pitchers": [
1
],
"players_used": 1,
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"team_stats": {}
},
"decisions": {
"loser": {
"id": 1,
"name": "sample"
},
"save": {
"id": 1,
"name": "sample"
},
"winner": {
"id": 1,
"name": "sample"
}
},
"fetched_at": "sample",
"game": {
"away": {
"losses": 1,
"probable_pitcher": {
"id": 1,
"name": "sample"
},
"score": 1,
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"wins": 1
},
"day_night": "sample",
"double_header": "sample",
"game_date": "sample",
"game_number": 1,
"game_type": "sample",
"home": {
"losses": 1,
"probable_pitcher": {
"id": 1,
"name": "sample"
},
"score": 1,
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"wins": 1
},
"id": 1,
"official_date": "sample",
"scheduled_innings": 1,
"season": "sample",
"series_description": "sample",
"status": {
"abstract": "sample",
"code": "sample",
"detailed": "sample",
"reason": "sample"
},
"venue": {
"id": 1,
"name": "sample"
}
},
"home_boxscore": {
"batters": [
1
],
"pitchers": [
1
],
"players_used": 1,
"team": {
"abbreviation": "sample",
"id": 1,
"name": "sample"
},
"team_stats": {}
},
"linescore": {
"away_errors": 1,
"away_hits": 1,
"away_runs": 1,
"current_inning": 1,
"home_errors": 1,
"home_hits": 1,
"home_runs": 1,
"inning_state": "sample",
"innings": [
{
"away_errors": 1,
"away_hits": 1,
"away_runs": 1,
"home_errors": 1,
"home_hits": 1,
"home_runs": 1,
"number": 1
}
],
"scheduled_innings": 1
},
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/mlb/game?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"