Skip to main content
GET
/
matches
/
{match}
Show Match
curl --request GET \
  --url https://padelapi.org/api/matches/{match} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "self": "<string>",
  "name": "<string>",
  "url": "<string>",
  "category": "<string>",
  "round": 123,
  "round_name": "<string>",
  "index": 123,
  "played_at": "<string>",
  "schedule_label": "<string>",
  "court": "<string>",
  "court_order": 123,
  "status": "<string>",
  "score": "<string>",
  "winner": "<string>",
  "started_time": "<string>",
  "duration": "<string>",
  "players": {
    "team_1": "<array>",
    "team_2": "<array>"
  },
  "connections": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

match
integer
required

The match ID

Response

MatchResource

id
integer
required
self
string
required
name
string
required
url
string | null
required
category
string
required
round
integer
required
round_name
string
required
index
integer
required
played_at
string | null
required
schedule_label
string
required
court
string
required
court_order
integer | null
required
status
string
required
score
required
winner
required
started_time
string | null
required
duration
string
required
players
object
required
connections
string
required