get_my_team
Retrieve detailed FPL team information for a specific gameweek, including player details, captain, and team value. Uses authenticated team ID for personalized data access.
Instructions
Get your own FPL team for a specific gameweek
Args:
gameweek: Gameweek number (defaults to current gameweek)
Returns:
Detailed team information including player details, captain, and value
Note:
This uses your authenticated team ID from the FPL credentials.
To get another team's details, use get_team and provide a team_id.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gameweek | No |
Input Schema (JSON Schema)
{
"properties": {
"gameweek": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Gameweek"
}
},
"title": "get_my_teamArguments",
"type": "object"
}