Skip to main content
GET
/
tournaments
List Tournaments
curl --request GET \
  --url https://padelapi.org/api/tournaments \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "self": "<string>",
      "name": "<string>",
      "url": "<string>",
      "location": "<string>",
      "country": "<string>",
      "level": "<string>",
      "status": "<string>",
      "start_date": "<string>",
      "end_date": "<string>",
      "links": "<string>",
      "connections": "<string>"
    }
  ],
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  },
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 123,
    "to": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

name
string | null

Name of the tournament to search for.

location
string | null

Name of the city/location to held the tournament.

country
string | null

2 letters country-code of the tournament location.

Required string length: 2
level
enum<string> | null

Level of the tournament to filter by.

Available options:
finals,
fip_gold,
fip_other,
fip_platinum,
major,
p1,
p2,
wpt_1000,
wpt_500,
wpt_final,
wpt_master
after_date
string<date> | null

After date of the tournament in YYYY-MM-DD format.

before_date
string<date> | null

Before date of the tournament in YYYY-MM-DD format.

sort_by
enum<string> | null

Name of the parameter to sort the tournaments by.

Available options:
name,
location,
country,
level,
start_date,
end_date
order_by
enum<string> | null

Order of the sorting, either asc or desc.

Available options:
asc,
desc

Response

Paginated set of TournamentResource

data
TournamentResource ยท object[]
required
meta
object
required