Azərbaycan dili Bahasa Indonesia Bosanski Català Čeština Dansk Deutsch Eesti English Español Français Galego Hrvatski Italiano Latviešu Lietuvių Magyar Malti Mакедонски Nederlands Norsk Polski Português Português BR Românã Slovenčina Srpski Suomi Svenska Tiếng Việt Türkçe Ελληνικά Български Русский Українська Հայերեն ქართული ენა 中文
Subpage under development, new version coming soon!

Subject: [update] XML interface

2021-02-19 15:14:22
So sad
2021-02-19 15:18:39
We have a competition, like other countries has, about junior players that came from our junior school and in order to check abilities is mandatory to put players in transfer announcement. So, I'm developing a tool to get that info and processing data. It will be great having a service to retrieve that information. At the end, it's public.
2021-02-19 19:33:19
I still hope and believe that devs will react to prior post, when it's time.
Ramonymous shall also discuss with the dev-team about XML.
_______________________________________________________________________
My prior post, once again:

I adresss to developers Raoul und Mekene:
Dear developers, please recognize the importancy of sites and tools (I described on my first post) and notice the names of following users to be in the group of the few test-persons, who will have the possibility to view the new site first: Terrion, ramonymous, kryminator
------------------------------------------------------------------------------------

Napoles, It's still not the time to invite them to test the beta, so no reason to be sad :) just believe, that the devs will make their best. ;)
2021-02-21 18:44:16
I hope so ;)
2021-09-20 22:02:26
Do we have any news on this topic?
2021-09-21 13:00:54
Nope. It seems logical to work on a new api after the core game will be update. (Read : not this month, not this season and certainly not this year, we are far far away from 100% of a new interface and features already announced).

It’s also true that there is no announce about any api, It's a bit worrying, but Devs keep the current «api » running. So we can assume' at least, that Devs will never make the mistake of removing API and killing external tools.
(edited)
2022-07-21 01:37:37
After some tests on XML files Im getting error number 6 - user IP is blacklisted. I've reached connections limit? Block is temporary?
2022-07-21 09:50:18
Yep ask admins to unblock your server IP of the app
2022-07-21 09:51:56
It's not rate limit they just block any unusual activity if the tool is not known happens to sokkerr assistant in the past few times
2023-02-15 01:20:43
I'd like to know if there is some dev who could answer some questions about the JSON API (Raul seems too busy :P):

- "info.team.nationalType" shows 0 for NT players if I access them from both the player and the owner team URL. Since it's a player property, I think it should show he is member of a NT although I don't access the NT URL, which has a different property to say it is a NT team, right?

- "transfer" only shows info when the player is in the transfer list. How can I know if a player has a transfer ad?

- Could you provide a way to access the tactics the user has?
2023-02-15 04:40:30
from xml api there is a field national

<player>
<ID>36602404</ID>
<name>Rusi</name>
<surname>Kyuranov</surname>
<countryID>54</countryID>
<age>32</age>
<height>191</height>
<weight>76.4</weight>
<BMI>20.94</BMI>
<teamID>36246</teamID>
<youthTeamID>36349</youthTeamID>
<value>10942000</value>
<wage>125700</wage>
<cards>2</cards>
<goals>7</goals>
<assists>26</assists>
<matches>284</matches>
<ntCards>0</ntCards>
<ntGoals>0</ntGoals>
<ntAssists>2</ntAssists>
<ntMatches>76</ntMatches>
<injuryDays>0</injuryDays>
<national>1</national>
<skillForm>17</skillForm>
<skillExperience>17</skillExperience>
<skillTeamwork>18</skillTeamwork>
<skillDiscipline>17</skillDiscipline>
<transferList>0</transferList>
<skillStamina>11</skillStamina>
<skillPace>17</skillPace>
<skillTechnique>16</skillTechnique>
<skillPassing>12</skillPassing>
<skillKeeper>1</skillKeeper>
<skillDefending>18</skillDefending>
<skillPlaymaking>12</skillPlaymaking>
<skillScoring>8</skillScoring>
<trainingPosition>1</trainingPosition>
<isInTrainingSlot>false</isInTrainingSlot>
</player>

for transfers ads i do not think we have any api exposed

and for tactics, i hope they will not provide such access :)
2023-02-15 10:11:11
> from xml api there is a field national

I know, but I wanted to avoid to double the queries now that the only way to get the NT skills is from JSON API

My best solution would be to do one query for every NT squad of the nationalities of the user players and look for the players there, but I wanted to get an answer about this before programming a bad fix :P
(edited)