Is there a way to retrieve all users from Smash Ultimate using the start.gg API? I couldn't find any information about fetching all users, only details about tournaments or specific player sets.
You can access the API here:
Thank you in advance for any assistance provided.
I managed to collect all Smash tournaments by executing the following GraphQL query:
query TournamentsByVideogame($perPage: Int!, $videogameId: ID!) {
tournaments(query: {
perPage: $perPage
page: 1
filter: {
past: true
countryCode: "FR"
videogameIds: [
$videogameId
]
}
}) {
pageInfo {
totalPages
page
}
nodes {
createdAt,
endAt,
id
name
slug
}
}
}