get_manager
Retrieve comprehensive Fantasy Premier League manager details, including name, team history, and league participation, by specifying a team ID for analysis and insights.
Instructions
Get detailed information about an FPL manager
Args:
team_id: FPL team ID to look up
Returns:
Manager information including history, name, team details, and leagues
Input Schema
Name | Required | Description | Default |
---|---|---|---|
team_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"team_id": {
"title": "Team Id",
"type": "integer"
}
},
"required": [
"team_id"
],
"title": "get_managerArguments",
"type": "object"
}