Skip to main content
GET
/
players
/
{player}
Show Player
curl --request GET \
  --url https://padelapi.org/api/players/{player} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "self": "<string>",
  "name": "<string>",
  "url": "<string>",
  "photo_url": "<string>",
  "category": "<string>",
  "ranking": "<string>",
  "points": 123,
  "height": 123,
  "nationality": "<string>",
  "birthplace": "<string>",
  "birthdate": "<string>",
  "age": "<string>",
  "hand": "<unknown>",
  "side": "<string>",
  "links": "<string>",
  "connections": {
    "matches": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

player
integer
required

The player ID

Response

PlayerResource

id
integer
required
self
string
required
name
string
required
url
string | null
required
photo_url
string | null
required
category
string
required
ranking
string
required
points
integer
required
height
integer | null
required
nationality
string
required
birthplace
string | null
required
birthdate
string | null
required
age
string | null
required
hand
null | enum<string>
required
Available options:
left,
right
side
string
required
connections
object
required