get_team
Fetch detailed Fantasy Premier League team data, including players, captain, and squad value, for a specific gameweek using team ID. Defaults to current gameweek if not specified.
Instructions
Get any team's players, captain, and other details for a specific gameweek
Args:
team_id: FPL team ID (required)
gameweek: Gameweek number (defaults to current gameweek)
Returns:
Detailed team information including player details, captain, and value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gameweek | No | ||
team_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gameweek": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Gameweek"
},
"team_id": {
"title": "Team Id",
"type": "integer"
}
},
"required": [
"team_id"
],
"title": "get_teamArguments",
"type": "object"
}