action pandascore_get_leagues_league_id_or_slug { label: "Get a league" description: "Get a single league by ID or by slug" provider: pandascore method: GET path: "/leagues/{league_id_or_slug}" encoding: json input: { type: "object" properties: { league_id_or_slug: { description: "A league ID or slug" type: "object" } } required: ["league_id_or_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }