action pandascore_get_matches_match_id_or_slug { label: "Get a match" description: "Get a single match by ID or by slug" provider: pandascore method: GET path: "/matches/{match_id_or_slug}" 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 } }