action pandascore_get_matches_match_id_or_slug_opponents { label: "Get match's opponents" description: "List opponents (player or teams) for the given match" provider: pandascore method: GET path: "/matches/{match_id_or_slug}/opponents" encoding: json input: { type: "object" properties: { match_id_or_slug: { description: "A match ID or slug" type: "object" } } required: ["match_id_or_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }