get_manager_info
Retrieve detailed Fantasy Premier League manager data, including league participation and performance statistics, based on a specific team ID. Useful for tracking progress and comparing FPL manager profiles.
Instructions
Get detailed information about an FPL manager
Args:
team_id: FPL team ID (defaults to authenticated user)
Returns:
Manager info with leagues and performance stats
Input Schema
Name | Required | Description | Default |
---|---|---|---|
team_id | No |
Input Schema (JSON Schema)
{
"properties": {
"team_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Team Id"
}
},
"title": "get_manager_infoArguments",
"type": "object"
}