get_player_information
Retrieve detailed player statistics and history from Fantasy Premier League data. Filter by player ID, name, or gameweek range, and include upcoming fixtures for informed decision-making.
Instructions
Get detailed information and statistics for a specific player
Args:
player_id: FPL player ID (if provided, takes precedence over player_name)
player_name: Player name to search for (used if player_id not provided)
start_gameweek: Starting gameweek for filtering player history
end_gameweek: Ending gameweek for filtering player history
include_history: Whether to include gameweek-by-gameweek history
include_fixtures: Whether to include upcoming fixtures
Returns:
Comprehensive player information including stats and history
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_gameweek | No | ||
include_fixtures | No | ||
include_history | No | ||
player_id | No | ||
player_name | No | ||
start_gameweek | No |
Input Schema (JSON Schema)
{
"properties": {
"end_gameweek": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "End Gameweek"
},
"include_fixtures": {
"default": true,
"title": "Include Fixtures",
"type": "boolean"
},
"include_history": {
"default": true,
"title": "Include History",
"type": "boolean"
},
"player_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Player Id"
},
"player_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Player Name"
},
"start_gameweek": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Gameweek"
}
},
"title": "get_player_informationArguments",
"type": "object"
}