fut icon indicating copy to clipboard operation
fut copied to clipboard

player database fifa 19

Open futseller opened this issue 4 years ago • 16 comments

Where can I get the current player database? and is it possible to get images to each of them?

futseller avatar Jul 30 '19 10:07 futseller

https://www.easports.com/ru/fifa/ultimate-team/fut/database https://www.easports.com/ru/fifa/ultimate-team/api/fut/item

fkulakov avatar Aug 03 '19 14:08 fkulakov

Is there another source available? According to this document the ea database will not be available anymore for fifa 20

nicklog avatar Sep 13 '19 12:09 nicklog

we should wait and see from where ea takes the ingame stats. However i don't see any reason that can lead ea to leave all that players infos available on the webapp since they only shows the main stats and not the ingame ones. It's the same situation for the special card. right now i have no idea on how retrieve the informs or other version frome the webapp without doing a search on the market.

gcentu avatar Sep 17 '19 08:09 gcentu

Fut database is available again

fkulakov avatar Sep 22 '19 09:09 fkulakov

Fut database is available again

where?

gcentu avatar Sep 22 '19 10:09 gcentu

where?

https://www.easports.com/ru/fifa/ultimate-team/fut/database https://www.easports.com/ru/fifa/ultimate-team/api/fut/item

That contains only fut19 cards, but they definationIds is same

fkulakov avatar Sep 22 '19 10:09 fkulakov

Fifa20 Players json - https://www.easports.com/fifa/ultimate-team/web-app/content/20C1B296-B15C-4F72-AF0F-882F187EC2C9/2020/fut/items/web/players.json

TrevorMcCormick avatar Oct 23 '19 13:10 TrevorMcCormick

Fifa 20 Players Meta - https://www.easports.com/fifa/ultimate-team/web-app/content/20C1B296-B15C-4F72-AF0F-882F187EC2C9/2020/fut/items/web/players_meta.json

Do anyone know how to read this? Which fields have which meaning?

@TrevorMcCormick Unfortunately, some values are missing? Does anyone know where they stand?

nicklog avatar Oct 23 '19 13:10 nicklog

"41":{"b":453081600,"f":1,"h":171,"s":4,"w":4,"wr":[2,0]} at a first look 41 is the card id b: birthday date in Epoch f: dont know h: height s: skill w: weakfoot wr: work rates

gcentu avatar Oct 23 '19 13:10 gcentu

@nicklog not all players have surnames, so that may be the missing values you're seeing. otherwise, not sure what you mean. let me know and i'll help

TrevorMcCormick avatar Oct 23 '19 13:10 TrevorMcCormick

@TheYellowKrato ratings, stats, club, nation, meta information like weak foot, skill moves, birthday and so on.

Thank you for your help :)

nicklog avatar Oct 23 '19 14:10 nicklog

Hello everybody. Please what is exactly the number "20C1B296-B15C-4F72-AF0F-882F187EC2C9" in the FIFA 20 Players Json ? Thank you

ghost avatar Oct 30 '19 07:10 ghost

Has anyone managed to decipher the fields in players_meta.json yet? Is it possible to get the nation from players.json or players_meta.json?

jonlondonwork avatar Dec 17 '19 10:12 jonlondonwork

Hello everybody. Please what is exactly the number "20C1B296-B15C-4F72-AF0F-882F187EC2C9" in the FIFA 20 Players Json ? Thank you

That is a unique ID that EA uses to identify the version of the database I suppose. it can be found inside the web app source code.

PasqualePuzio avatar Apr 17 '20 16:04 PasqualePuzio

Has anyone managed to decipher the fields in players_meta.json yet? Is it possible to get the nation from players.json or players_meta.json?

Not yet. So far I have managed to decipher the main fields, but for instance for Alan Shearer I can'r decipher the following fields:

image

Can anybody provide some help?

Thanks

PasqualePuzio avatar Apr 17 '20 16:04 PasqualePuzio

Hi, these are the values used for the icons biography Screenshot 2020-04-17 18 12 36

gcentu avatar Apr 17 '20 16:04 gcentu

Anyone knows how to get players info? players.json and players_meta.json don't contain all info such as clubs or ratings

ricocrescenzio95 avatar Nov 16 '20 11:11 ricocrescenzio95

@ricocrescenzio95 , Did you mean this kind of url ?

  • https://www.ea.com/fifa/ultimate-team/web-app/content/21D4F1AC-91A3-458D-A64E-895AA6D871D1/2021/fut/config/companion/squadData.json
  • https://www.ea.com/fifa/ultimate-team/web-app/content/21D4F1AC-91A3-458D-A64E-895AA6D871D1/2021/fut/config/companion/teamconfig.json
  • https://www.ea.com/fifa/ultimate-team/web-app/content/21D4F1AC-91A3-458D-A64E-895AA6D871D1/2021/fut/items/web/players.json
  • https://www.ea.com/fifa/ultimate-team/web-app/content/21D4F1AC-91A3-458D-A64E-895AA6D871D1/2021/fut/items/web/players_meta.json
  • https://www.ea.com/fifa/ultimate-team/web-app/content/21D4F1AC-91A3-458D-A64E-895AA6D871D1/2021/fut/items/web/players_icons.json

S1M0N38 avatar Nov 18 '20 13:11 S1M0N38

@S1M0N38 nice those too; not sure if players_meta.json contains info of players like ratings, club, rarity type and so on. The first element of that json is

"41": {
    "b": 453081600,
    "f": 1,
    "h": 171,
    "pt": [
      84025604,
      0
    ],
    "s": 3,
    "w": 4,
    "wr": [
      2,
      0
    ]
  }

Which is missing a lot of info...

ricocrescenzio95 avatar Nov 18 '20 13:11 ricocrescenzio95

Don't know, this is what I found in a quick search. I suspect that to obtain more information you need to combine all those json with more urls ends points. Take a look yourself; open chrome dev tools, disable debugger breakpoint and follow the request and their data.

S1M0N38 avatar Nov 18 '20 14:11 S1M0N38