Endpoint Playground
Test Crawlora's List MLB teams 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/teams" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| season | integer | No | Four-digit season; defaults to current year |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"season": 1,
"source_url": "https://example.com/resource",
"teams": [
{
"abbreviation": "sample",
"active": true,
"club_name": "sample",
"division": {
"id": 1,
"name": "sample"
},
"first_year_of_play": "sample",
"id": 1,
"league": {
"id": 1,
"name": "sample"
},
"location_name": "sample",
"name": "sample",
"season": 1,
"venue": {
"id": 1,
"name": "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 the 30 MLB clubs for a season with league, division, venue, and abbreviation metadata.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"season": 1,
"source_url": "https://example.com/resource",
"teams": [
{
"abbreviation": "sample",
"active": true,
"club_name": "sample",
"division": {
"id": 1,
"name": "sample"
},
"first_year_of_play": "sample",
"id": 1,
"league": {
"id": 1,
"name": "sample"
},
"location_name": "sample",
"name": "sample",
"season": 1,
"venue": {
"id": 1,
"name": "sample"
}
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/mlb/teams" \
-H "x-api-key: $CRAWLORA_API_KEY"