Skip to main content

R6SiegeMatchesService

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

MethodsDescription
get_r6siege_matchesList matches for the Rainbow Six Siege videogame
get_r6siege_matches_pastList past Rainbow Six Siege matches
get_r6siege_matches_runningList running Rainbow Six Siege matches
get_r6siege_matches_upcomingList upcoming Rainbow Six Siege matches

get_r6siege_matches

List matches for the Rainbow Six Siege videogame

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

Parameters

NameTypeRequiredDescription
filterFilterOverR6SiegeMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverR6SiegeMatchesOptions 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.
searchSearchOverR6SiegeMatchesOptions 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 FilterOverR6SiegeMatches, RangeOverR6SiegeMatches, SearchOverR6SiegeMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverR6SiegeMatches(
begin_at=[
"ut proident"
],
detailed_stats=True,
draw=False,
end_at=[
"magn"
],
finished=True,
forfeit=True,
future=True,
id_=[
3
],
league_id=[
3
],
match_type=[
"all_games_played"
],
modified_at=[
"ani"
],
name=[
"aliquip culpa"
],
not_started=True,
number_of_games=[
9
],
opponent_id=[
10
],
opponents_filled=True,
past=True,
running=True,
scheduled_at=[
"ad eu consec"
],
serie_id=[
1
],
slug=[
"6A0c8"
],
status=[
"canceled"
],
tournament_id=[
1
],
unscheduled=True,
videogame=[
1
],
videogame_title=[
4
],
videogame_version=[
"266391336.84111"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverR6SiegeMatches(
begin_at=[
"t"
],
detailed_stats=[
True
],
draw=[
True
],
end_at=[
"dolor"
],
forfeit=[
False
],
id_=[
4
],
match_type=[
"all_games_played"
],
modified_at=[
"mo"
],
name=[
"commodo"
],
number_of_games=[
1
],
scheduled_at=[
"sed"
],
slug=[
"SXr_"
],
status=[
"canceled"
],
tournament_id=[
2
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverR6SiegeMatches(
match_type="all_games_played",
name="culpa deserun",
slug="rYbtGes",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.r6_siege_matches.get_r6siege_matches(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_r6siege_matches_past

List past Rainbow Six Siege matches

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

Parameters

NameTypeRequiredDescription
filterFilterOverR6SiegeMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverR6SiegeMatchesOptions 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.
searchSearchOverR6SiegeMatchesOptions 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 FilterOverR6SiegeMatches, RangeOverR6SiegeMatches, SearchOverR6SiegeMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverR6SiegeMatches(
begin_at=[
"ut proident"
],
detailed_stats=True,
draw=False,
end_at=[
"magn"
],
finished=True,
forfeit=True,
future=True,
id_=[
3
],
league_id=[
3
],
match_type=[
"all_games_played"
],
modified_at=[
"ani"
],
name=[
"aliquip culpa"
],
not_started=True,
number_of_games=[
9
],
opponent_id=[
10
],
opponents_filled=True,
past=True,
running=True,
scheduled_at=[
"ad eu consec"
],
serie_id=[
1
],
slug=[
"6A0c8"
],
status=[
"canceled"
],
tournament_id=[
1
],
unscheduled=True,
videogame=[
1
],
videogame_title=[
4
],
videogame_version=[
"266391336.84111"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverR6SiegeMatches(
begin_at=[
"t"
],
detailed_stats=[
True
],
draw=[
True
],
end_at=[
"dolor"
],
forfeit=[
False
],
id_=[
4
],
match_type=[
"all_games_played"
],
modified_at=[
"mo"
],
name=[
"commodo"
],
number_of_games=[
1
],
scheduled_at=[
"sed"
],
slug=[
"SXr_"
],
status=[
"canceled"
],
tournament_id=[
2
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverR6SiegeMatches(
match_type="all_games_played",
name="culpa deserun",
slug="rYbtGes",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.r6_siege_matches.get_r6siege_matches_past(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_r6siege_matches_running

List running Rainbow Six Siege matches

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

Parameters

NameTypeRequiredDescription
filterFilterOverR6SiegeMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverR6SiegeMatchesOptions 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.
searchSearchOverR6SiegeMatchesOptions 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 FilterOverR6SiegeMatches, RangeOverR6SiegeMatches, SearchOverR6SiegeMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverR6SiegeMatches(
begin_at=[
"ut proident"
],
detailed_stats=True,
draw=False,
end_at=[
"magn"
],
finished=True,
forfeit=True,
future=True,
id_=[
3
],
league_id=[
3
],
match_type=[
"all_games_played"
],
modified_at=[
"ani"
],
name=[
"aliquip culpa"
],
not_started=True,
number_of_games=[
9
],
opponent_id=[
10
],
opponents_filled=True,
past=True,
running=True,
scheduled_at=[
"ad eu consec"
],
serie_id=[
1
],
slug=[
"6A0c8"
],
status=[
"canceled"
],
tournament_id=[
1
],
unscheduled=True,
videogame=[
1
],
videogame_title=[
4
],
videogame_version=[
"266391336.84111"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverR6SiegeMatches(
begin_at=[
"t"
],
detailed_stats=[
True
],
draw=[
True
],
end_at=[
"dolor"
],
forfeit=[
False
],
id_=[
4
],
match_type=[
"all_games_played"
],
modified_at=[
"mo"
],
name=[
"commodo"
],
number_of_games=[
1
],
scheduled_at=[
"sed"
],
slug=[
"SXr_"
],
status=[
"canceled"
],
tournament_id=[
2
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverR6SiegeMatches(
match_type="all_games_played",
name="culpa deserun",
slug="rYbtGes",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.r6_siege_matches.get_r6siege_matches_running(
filter=filter,
range=range,
sort=sort,
search=search,
page=page,
per_page=50
)

print(result)

get_r6siege_matches_upcoming

List upcoming Rainbow Six Siege matches

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

Parameters

NameTypeRequiredDescription
filterFilterOverR6SiegeMatchesOptions to filter results. String fields are case sensitive
For more information on filtering, see docs.
rangeRangeOverR6SiegeMatchesOptions 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.
searchSearchOverR6SiegeMatchesOptions 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 FilterOverR6SiegeMatches, RangeOverR6SiegeMatches, SearchOverR6SiegeMatches

sdk = PandascoreClient(
access_token="YOUR_ACCESS_TOKEN",
base_url=Environment.DEFAULT.value,
timeout=10000
)
filter=FilterOverR6SiegeMatches(
begin_at=[
"ut proident"
],
detailed_stats=True,
draw=False,
end_at=[
"magn"
],
finished=True,
forfeit=True,
future=True,
id_=[
3
],
league_id=[
3
],
match_type=[
"all_games_played"
],
modified_at=[
"ani"
],
name=[
"aliquip culpa"
],
not_started=True,
number_of_games=[
9
],
opponent_id=[
10
],
opponents_filled=True,
past=True,
running=True,
scheduled_at=[
"ad eu consec"
],
serie_id=[
1
],
slug=[
"6A0c8"
],
status=[
"canceled"
],
tournament_id=[
1
],
unscheduled=True,
videogame=[
1
],
videogame_title=[
4
],
videogame_version=[
"266391336.84111"
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
range=RangeOverR6SiegeMatches(
begin_at=[
"t"
],
detailed_stats=[
True
],
draw=[
True
],
end_at=[
"dolor"
],
forfeit=[
False
],
id_=[
4
],
match_type=[
"all_games_played"
],
modified_at=[
"mo"
],
name=[
"commodo"
],
number_of_games=[
1
],
scheduled_at=[
"sed"
],
slug=[
"SXr_"
],
status=[
"canceled"
],
tournament_id=[
2
],
winner_id=[
7
],
winner_type=[
"Player"
]
)
sort=[
""
]
search=SearchOverR6SiegeMatches(
match_type="all_games_played",
name="culpa deserun",
slug="rYbtGes",
status="canceled",
winner_type="Player"
)
page=1

result = sdk.r6_siege_matches.get_r6siege_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 →