cURL
curl --request GET \ --url https://padelapi.org/api/pairs/{player1}-{player2} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "self": "<string>", "name": "<string>", "category": "<string>", "points": "<string>", "first_match_at": "<string>", "last_match_at": "<string>", "players": [ { "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>" } } ], "connections": "<string>" }
Endpoint to retrieve a specific pair by their respective player IDs.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The player1 ID
The player2 ID
PairResource
Show child attributes