Skip to main content

RlMatchesService

A list of all methods in the RlMatchesService service. Click on the method name to view detailed information about that method.

MethodsDescription
get_rl_matchesList matches for the Rocket League videogame
get_rl_matches_pastList past Rocket League matches
get_rl_matches_runningList running Rocket League matches
get_rl_matches_upcomingList upcoming Rocket League matches

get_rl_matches

List matches for the Rocket League videogame

  • HTTP Method: GET
  • Endpoint: /rl/matches

Parameters

NameTypeRequiredDescription
filterFilterOverRlMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverRlMatchesOptions to select results within ranges
For more information on ranges, see docs.
sortList[any]Options to sort results
For more information on sorting, see docs.
searchSearchOverRlMatchesOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
per_pageintEquivalent to page[size]

Return Type

List[Match]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverRlMatches, RangeOverRlMatches, SearchOverRlMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverRlMatches(
begin_at=[
"culpa r"
],
detailed_stats=True,
draw=True,
end_at=[
"in Ut "
],
finished=False,
forfeit=False,
future=False,
id_=[
9
],
league_id=[
5
],
match_type=[
"all_games_played"
],
modified_at=[
"ut"
],
name=[
"ullamco en"
],
not_started=False,
number_of_games=[
8
],
opponent_id=[
10
],
opponents_filled=False,
past=True,
running=True,
scheduled_at=[
"dolore"
],
serie_id=[
6
],
slug=[
"L2B6u2"
],
status=[
"canceled"
],
tournament_id=[
2
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
4
],
videogame_version=[
"6734585794.51.57967777"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverRlMatches(
begin_at=[
"amet "
],
detailed_stats=[
False
],
draw=[
False
],
end_at=[
"eu officia id d"
],
forfeit=[
False
],
id_=[
9
],
match_type=[
"all_games_played"
],
modified_at=[
"i"
],
name=[
"reprehend"
],
number_of_games=[
7
],
scheduled_at=[
"occaecat mo"
],
slug=[
"SC"
],
status=[
"canceled"
],
tournament_id=[
6
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverRlMatches(
match_type="all_games_played",
name="commodo pariatu",
slug="Y",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.rl_matches.get_rl_matches(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_rl_matches_past

List past Rocket League matches

  • HTTP Method: GET
  • Endpoint: /rl/matches/past

Parameters

NameTypeRequiredDescription
filterFilterOverRlMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverRlMatchesOptions to select results within ranges
For more information on ranges, see docs.
sortList[any]Options to sort results
For more information on sorting, see docs.
searchSearchOverRlMatchesOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
per_pageintEquivalent to page[size]

Return Type

List[Match]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverRlMatches, RangeOverRlMatches, SearchOverRlMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverRlMatches(
begin_at=[
"culpa r"
],
detailed_stats=True,
draw=True,
end_at=[
"in Ut "
],
finished=False,
forfeit=False,
future=False,
id_=[
9
],
league_id=[
5
],
match_type=[
"all_games_played"
],
modified_at=[
"ut"
],
name=[
"ullamco en"
],
not_started=False,
number_of_games=[
8
],
opponent_id=[
10
],
opponents_filled=False,
past=True,
running=True,
scheduled_at=[
"dolore"
],
serie_id=[
6
],
slug=[
"L2B6u2"
],
status=[
"canceled"
],
tournament_id=[
2
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
4
],
videogame_version=[
"6734585794.51.57967777"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverRlMatches(
begin_at=[
"amet "
],
detailed_stats=[
False
],
draw=[
False
],
end_at=[
"eu officia id d"
],
forfeit=[
False
],
id_=[
9
],
match_type=[
"all_games_played"
],
modified_at=[
"i"
],
name=[
"reprehend"
],
number_of_games=[
7
],
scheduled_at=[
"occaecat mo"
],
slug=[
"SC"
],
status=[
"canceled"
],
tournament_id=[
6
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverRlMatches(
match_type="all_games_played",
name="commodo pariatu",
slug="Y",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.rl_matches.get_rl_matches_past(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_rl_matches_running

List running Rocket League matches

  • HTTP Method: GET
  • Endpoint: /rl/matches/running

Parameters

NameTypeRequiredDescription
filterFilterOverRlMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverRlMatchesOptions to select results within ranges
For more information on ranges, see docs.
sortList[any]Options to sort results
For more information on sorting, see docs.
searchSearchOverRlMatchesOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
per_pageintEquivalent to page[size]

Return Type

List[Match]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverRlMatches, RangeOverRlMatches, SearchOverRlMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverRlMatches(
begin_at=[
"culpa r"
],
detailed_stats=True,
draw=True,
end_at=[
"in Ut "
],
finished=False,
forfeit=False,
future=False,
id_=[
9
],
league_id=[
5
],
match_type=[
"all_games_played"
],
modified_at=[
"ut"
],
name=[
"ullamco en"
],
not_started=False,
number_of_games=[
8
],
opponent_id=[
10
],
opponents_filled=False,
past=True,
running=True,
scheduled_at=[
"dolore"
],
serie_id=[
6
],
slug=[
"L2B6u2"
],
status=[
"canceled"
],
tournament_id=[
2
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
4
],
videogame_version=[
"6734585794.51.57967777"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverRlMatches(
begin_at=[
"amet "
],
detailed_stats=[
False
],
draw=[
False
],
end_at=[
"eu officia id d"
],
forfeit=[
False
],
id_=[
9
],
match_type=[
"all_games_played"
],
modified_at=[
"i"
],
name=[
"reprehend"
],
number_of_games=[
7
],
scheduled_at=[
"occaecat mo"
],
slug=[
"SC"
],
status=[
"canceled"
],
tournament_id=[
6
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverRlMatches(
match_type="all_games_played",
name="commodo pariatu",
slug="Y",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.rl_matches.get_rl_matches_running(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_rl_matches_upcoming

List upcoming Rocket League matches

  • HTTP Method: GET
  • Endpoint: /rl/matches/upcoming

Parameters

NameTypeRequiredDescription
filterFilterOverRlMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverRlMatchesOptions to select results within ranges
For more information on ranges, see docs.
sortList[any]Options to sort results
For more information on sorting, see docs.
searchSearchOverRlMatchesOptions to search results
For more information on searching, see docs.
pagePagePagination in the form of page=2 or page[size]=30&page[number]=2
per_pageintEquivalent to page[size]

Return Type

List[Match]

Example Usage Code Snippet

from pandascore_client import PandascoreClient, Environment
from pandascore_client.models import FilterOverRlMatches, RangeOverRlMatches, SearchOverRlMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverRlMatches(
begin_at=[
"culpa r"
],
detailed_stats=True,
draw=True,
end_at=[
"in Ut "
],
finished=False,
forfeit=False,
future=False,
id_=[
9
],
league_id=[
5
],
match_type=[
"all_games_played"
],
modified_at=[
"ut"
],
name=[
"ullamco en"
],
not_started=False,
number_of_games=[
8
],
opponent_id=[
10
],
opponents_filled=False,
past=True,
running=True,
scheduled_at=[
"dolore"
],
serie_id=[
6
],
slug=[
"L2B6u2"
],
status=[
"canceled"
],
tournament_id=[
2
],
unscheduled=False,
videogame=[
1
],
videogame_title=[
4
],
videogame_version=[
"6734585794.51.57967777"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverRlMatches(
begin_at=[
"amet "
],
detailed_stats=[
False
],
draw=[
False
],
end_at=[
"eu officia id d"
],
forfeit=[
False
],
id_=[
9
],
match_type=[
"all_games_played"
],
modified_at=[
"i"
],
name=[
"reprehend"
],
number_of_games=[
7
],
scheduled_at=[
"occaecat mo"
],
slug=[
"SC"
],
status=[
"canceled"
],
tournament_id=[
6
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverRlMatches(
match_type="all_games_played",
name="commodo pariatu",
slug="Y",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.rl_matches.get_rl_matches_upcoming(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

Build Your Own SDKs with  liblab

Build developer friendly SDKs in minutes from your APIs

Start for Free →