Player detail
get_playerRetrieve complete player data from Comunio including history, records, averages, upcoming fixtures, buyout clause, and availability status. Read-only.
Instructions
Get everything Comunio knows about one player. Ids come from get_squad,
get_market or get_offers.
Beyond the price and availability the squad already gives: season-by-season
history going back years, the record of goals, cards and man-of-the-match
awards, averages including a recent-form window, the next three fixtures, what
the current owner paid, and the buyout_clause — what taking the player from
their owner without consent would cost.
status_meaning spells out the status code, and available is true only when the
player can actually be counted on.
Read-only: fetches current state and changes nothing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| player_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| club | Yes | ||
| name | Yes | Player name | |
| owner | No | Manager who owns the player | |
| price | Yes | Current market value, in euros | |
| record | Yes | ||
| status | Yes | Availability code, e.g. ACTIVE or YELLOW_RED_BANNED | |
| history | Yes | Points season by season, oldest first, as Comunio orders them | |
| profile | Yes | ||
| watched | Yes | On the signed-in manager's watchlist | |
| averages | Yes | ||
| owner_id | No | That manager's identifier | |
| available | Yes | Whether the player can be counted on right now | |
| player_id | Yes | Player identifier | |
| last_points | No | Points in the last matchday | |
| status_info | No | Comunio's note on the status | |
| next_matches | Yes | Upcoming fixtures, soonest first | |
| purchased_on | No | When the owner bought them, or null for a player from the initial draft who was never bought | |
| total_points | No | Points this season | |
| buyout_clause | Yes | ||
| purchase_price | No | What the current owner paid, in euros | |
| status_meaning | No | Plain-language reading of the status code |