MLB API - Free Agents Endpoint
February 28th, 2025
We added a Free Agents endpoint, which returns a list of all current free agents in the league.
☑️ Sample Request:
Free Agents - https://api.sportradar.com/mlb/trial/v8/en/league/free_agents.xml?api_key=?api_key=[API_KEY]
🔢 Version
🔁 Endpoints Affected
- Free Agents
⚙️ Return Sample
<league xmlns="http://feed.elasticstats.com/schema/baseball/v8/free_agents.xsd" alias="MLB" name="Major League Baseball" id="2fa448bc-fc17-4d3d-be03-e60e080fdc26">
<free_agent id="00021b00-7b80-4277-ab4c-ce155308583f" first_name="Jarred" last_name="Bogany" preferred_name="Jarred" full_name="Jarred Bogany" position="OF" status="FA" mlbam_id="475648" height="75" weight="200" throw_hand="R" bat_hand="R" updated="2020-02-27T15:59:31+00:00"/>
<free_agent id="0003f2a3-0428-4a17-8431-bb903cd8252b" first_name="Dwayne" last_name="Hosey" preferred_name="Dwayne" full_name="Dwayne Hosey" status="FA" mlbam_id="116165" height="0" weight="0" throw_hand="R" bat_hand="B" updated="2020-02-25T18:43:44+00:00"/>
<free_agent id="00069a01-b6d7-48e5-b076-072b97acf3b2" first_name="Elias Eduardo" last_name="Valdez" preferred_name="Elias Eduardo" full_name="Elias Eduardo Valdez" position="P" status="FA" mlbam_id="593483" height="75" weight="165" throw_hand="L" bat_hand="L" updated="2020-02-27T18:01:34+00:00"/>
<free_agent id="000f4e46-32a5-4db8-a5d2-6b7652ac4291" first_name="Cristian" last_name="Guzman" preferred_name="Cristian" full_name="Cristian Guzman" position="IF" status="FA" mlbam_id="150217" height="72" weight="150" throw_hand="R" bat_hand="B" updated="2020-02-07T15:37:17+00:00"/>
<free_agent id="000f5fb3-a2d5-4219-abbb-8f6a231bcb83" first_name="Ryan" last_name="Khoury" preferred_name="Ryan" full_name="Ryan Khoury" position="IF" status="FA" mlbam_id="501929" height="70" weight="180" throw_hand="R" bat_hand="R" updated="2020-02-24T20:27:07+00:00"/>
{
"league": {
"alias": "MLB",
"name": "Major League Baseball",
"id": "2fa448bc-fc17-4d3d-be03-e60e080fdc26",
"free_agents": [
{
"id": "00021b00-7b80-4277-ab4c-ce155308583f",
"first_name": "Jarred",
"last_name": "Bogany",
"preferred_name": "Jarred",
"full_name": "Jarred Bogany",
"position": "OF",
"status": "FA",
"mlbam_id": "475648",
"height": "75",
"weight": "200",
"throw_hand": "R",
"bat_hand": "R",
"updated": "2020-02-27T15:59:31+00:00"
},
{
"id": "0003f2a3-0428-4a17-8431-bb903cd8252b",
"first_name": "Dwayne",
"last_name": "Hosey",
"preferred_name": "Dwayne",
"full_name": "Dwayne Hosey",
"status": "FA",
"mlbam_id": "116165",
"height": "0",
"weight": "0",
"throw_hand": "R",
"bat_hand": "B",
"updated": "2020-02-25T18:43:44+00:00"
},
{
"id": "00069a01-b6d7-48e5-b076-072b97acf3b2",
"first_name": "Elias Eduardo",
"last_name": "Valdez",
"preferred_name": "Elias Eduardo",
"full_name": "Elias Eduardo Valdez",
"position": "P",
"status": "FA",
"mlbam_id": "593483",
"height": "75",
"weight": "165",
"throw_hand": "L",
"bat_hand": "L",
"updated": "2020-02-27T18:01:34+00:00"
},
{
"id": "000f4e46-32a5-4db8-a5d2-6b7652ac4291",
"first_name": "Cristian",
"last_name": "Guzman",
"preferred_name": "Cristian",
"full_name": "Cristian Guzman",
"position": "IF",
"status": "FA",
"mlbam_id": "150217",
"height": "72",
"weight": "150",
"throw_hand": "R",
"bat_hand": "B",
"updated": "2020-02-07T15:37:17+00:00"
},
{
"id": "000f5fb3-a2d5-4219-abbb-8f6a231bcb83",
"first_name": "Ryan",
"last_name": "Khoury",
"preferred_name": "Ryan",
"full_name": "Ryan Khoury",
"position": "IF",
"status": "FA",
"mlbam_id": "501929",
"height": "70",
"weight": "180",
"throw_hand": "R",
"bat_hand": "R",
"updated": "2020-02-24T20:27:07+00:00"
}