action pandascore_get_tournaments_tournament_id_or_slug { label: "Get a tournament" description: "Get a single tournament by ID or by slug" provider: pandascore method: GET path: "/tournaments/{tournament_id_or_slug}" 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 } }