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
playerCardId
number
required

The unique identifier of the associated player card.

Example:

1

priceInCoins
number
required

The current price of the player card in FUT coins.

Example:

100000

priceInCoinsFormatted
string
required

The current price of the player card formatted in FUT coins.

Example:

"1,000,00"

priceRangeInCoins
object
required

The price range of the player card in FUT coins.

Example:
{
  "min": 100000,
  "minFormatted": "1,000,00",
  "max": 200000,
  "maxFormatted": "2,000,00"
}
source
enum<string>
required

The source of the player card price.

Available options:
FUTGG,
FUTBIN
Example:

"FUTBIN"

lastUpdatedAt
string
required

The last update date (ISO 8601) of the player card price.

Example:

"2023-05-20T14:30:00Z"