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