I was wondering if it is possible to get all users from Smash Ultimate using the start.gg API? I didn’t see any documentation about getting all users, only tournaments or sets by a specific player.
Here is the api : https://developer.start.gg/docs/intro
Thanks in advance.
I already got all tournaments of Smash using this 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
}
}
}
New contributor
Tdnet 59 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.