Endpoint Playground
Test Crawlora's MLB transactions 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/transactions?start_date=<start_date>&end_date=<end_date>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| start_date | string | Yes | Range start in YYYY-MM-DD format | |
| end_date | string | Yes | Range end in YYYY-MM-DD format | |
| team_id | string | No | Numeric MLB team id | |
| player_id | string | No | Numeric MLB player id |
{
"code": 200,
"data": {
"start_date": "2026-07-25",
"end_date": "2026-08-01",
"count": 427,
"transactions": []
}
}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.
Lists signings, trades, options, assignments, injured-list moves, and other MLB transactions for a date range.
{
"code": 200,
"data": {
"start_date": "2026-07-25",
"end_date": "2026-08-01",
"count": 427,
"transactions": []
}
}curl "https://api.crawlora.net/api/v1/mlb/transactions?start_date=<start_date>&end_date=<end_date>" \
-H "x-api-key: $CRAWLORA_API_KEY"