GET
/
api
/
v1
/
player-cards
/
{playerId}
/
price
/
live
curl --request GET \
  --url https://futapi.app/api/v1/player-cards/{playerId}/price/live \
  --header 'x-api-key: <api-key>'
{
"playerCardId": 1,
"priceInCoins": 100000,
"priceInCoinsFormatted": "1,000,00",
"priceRangeInCoins": {
"min": 100000,
"minFormatted": "1,000,00",
"max": 200000,
"maxFormatted": "2,000,00"
},
"source": "FUTBIN",
"lastUpdatedAt": "2023-05-20T14:30:00Z"
}

Authorizations

x-api-key
string
header
required

Path Parameters

playerId
string
required

Query Parameters

source
enum<string>
default:FUTBIN

Source to fetch the price from

Available options:
FUTGG,
FUTBIN
Example:

"FUTBIN"

platform
enum<string>
default:PC

Platform to fetch the price from

Available options:
XBOX,
PLAYSTATION,
PC
Example:

"PC"

Response

200
application/json

The response is of type object.