Skip to main content
GET
/
api
/
v2
/
players
/
{playerID}
Get a player by ID
curl --request GET \
  --url 'https://therundown.io/api/v2/players/{playerID}?key='
{
  "players": [
    {
      "id": 16627,
      "sport_id": 4,
      "team_id": 11,
      "first_name": "Trae",
      "last_name": "Young",
      "display_name": "Trae Young",
      "weight": 164,
      "height": 73,
      "display_weight": "164 lbs",
      "display_height": "6' 1\"",
      "age": 27,
      "date_of_birth": "1998-09-19T07:00Z",
      "slug": "trae-young",
      "jersey": "11",
      "position": "Guard",
      "position_abbreviation": "G",
      "birth_place_city": "Lubbock",
      "birth_place_country": "USA",
      "experience_years": 7,
      "active": true,
      "status": "Active"
    }
  ]
}

Authorizations

key
string
query
required

API key as query parameter

Path Parameters

playerID
integer
required

Response

200 - application/json

Player data

players
object[]