action pandascore_get_tournaments_tournament_id_or_slug_standings { label: "Get tournament standings" description: "Get the current standings for a given tournament" provider: pandascore method: GET path: "/tournaments/{tournament_id_or_slug}/standings" encoding: json input: { type: "object" properties: { tournament_id_or_slug: { description: "A tournament ID or slug" type: "object" } } required: ["tournament_id_or_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }