Skip to main content
The GET /expected_transfer_value endpoint returns the current expected market transfer fee for a player. The valuation is calculated using SquadAssist’s transfer fee prediction model, which accounts for the player’s current club, the prospective buying club (if provided), and contract situation (and more). Both the requested currency and EUR values are always returned so you can display or compare values without additional conversion.

Request

string
required
The SquadAssist player ID. Use POST /query_player to look up the ID from a Transfermarkt or Wyscout ID.
string
The SquadAssist ID of the club that may be buying the player. When provided, the model uses buying-club context to adjust the predicted fee. Use POST /query_club to look up the club ID.
string
An ISO 4217 currency code (e.g. EUR, GBP, USD). When provided, this overrides your account’s preferred currency. Defaults to EUR.
string
The end date of the player’s current contract in YYYY-MM-DD format. Providing this date allows the model to factor contract length into the valuation — players in the final year of their contract are typically valued lower.

Response

string
The ISO 4217 currency code of the returned expected_transfer_value. Matches the currency query parameter you sent, or EUR if none was provided.
integer
The expected market transfer fee in the requested currency. Always returned as a whole number.
integer
The expected market transfer fee in EUR, regardless of the currency parameter. Use this field when you need a stable base-currency value for comparisons.

Example

Errors