Pinned OGame API

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • Hi guys.

      From what I know, using this API directly is not recomended and admins stated to first download data from API to our server and then fetch data from there.

      Since direct use of API isn't recomended, I have to make nearly 400,000 requests just to download one entire snapshot.
      Wouldn't it be easier if GF provide gzip'ped data which would eventually reduce data size fetch from over 2GB to 200MB and 400,000 request to just one?


      Source Code

      1. 11M alliances
      2. 188M highscore
      3. 1.0M localization
      4. 1.7G playerData
      5. 22M players
      6. 956K serverData
      7. 197M universe
      8. 956K universes
      9. 423686 files (where each file equals one request to server)
    • Malakian wrote:

      Hi guys.

      From what I know, using this API directly is not recomended and admins stated to first download data from API to our server and then fetch data from there.

      Since direct use of API isn't recomended, I have to make nearly 400,000 requests just to download one entire snapshot.
      Wouldn't it be easier if GF provide gzip'ped data which would eventually reduce data size fetch from over 2GB to 200MB and 400,000 request to just one?


      Source Code

      1. 11M alliances
      2. 188M highscore
      3. 1.0M localization
      4. 1.7G playerData
      5. 22M players
      6. 956K serverData
      7. 197M universe
      8. 956K universes
      9. 423686 files (where each file equals one request to server)

      Ehm, the use of the old xml api is directly allowed and also recommended :o
      The new json api is handled differently and also requires a private api key. This one have to be private, this requests have to be proxied or limited by yourself. :)
      OGame Tech
    • Hello everybody,

      I have a quick question: am I allowed to load the players.xml and then load the playerData.xml for each and every player in rapid succession? I don't wish to accidently DOS-attack the server. Not really experienced with querying servers and I don't know how much they can take^^

      Anyway, any help greatly appreciated. Cheers
    • Display Spoiler

      Source Code

      1. stdClass Object
      2. (
      3. [generic] => stdClass Object
      4. (
      5. [sr_id] => b8d56961d3f876af386cc87feeecf92da332e1cb
      6. [event_time] => 2017-02-09T16:22:44+00:00
      7. [event_timestamp] => 1486657364
      8. [total_ship_count] => 0
      9. [total_defense_count] => 11
      10. [loot_percentage] => 50
      11. [spy_fail_chance] => 0
      12. [activity] => -1
      13. [attacker_name] => TGWo
      14. [attacker_planet_name] => Homeworld
      15. [attacker_planet_coordinates] => 1:146:6
      16. [attacker_planet_type] => 1
      17. [attacker_alliance_name] =>
      18. [attacker_alliance_tag] =>
      19. [defender_name] => TGWo1
      20. [defender_planet_name] => Homeworld
      21. [defender_planet_coordinates] => 1:150:4
      22. [defender_planet_type] => 1
      23. [defender_alliance_name] =>
      24. [defender_alliance_tag] =>
      25. [failed_ships] =>
      26. [failed_defense] =>
      27. [failed_buildings] =>
      28. [failed_research] =>
      29. )
      30. [details] => stdClass Object
      31. (
      32. [resources] => stdClass Object
      33. (
      34. [metal] => 140000
      35. [crystal] => 75000
      36. [deuterium] => 40000
      37. )
      38. [buildings] => Array
      39. (
      40. [0] => stdClass Object
      41. (
      42. [building_type] => 1
      43. [level] => 17
      44. )
      45. [1] => stdClass Object
      46. (
      47. [building_type] => 2
      48. [level] => 13
      49. )
      50. [2] => stdClass Object
      51. (
      52. [building_type] => 3
      53. [level] => 5
      54. )
      55. [3] => stdClass Object
      56. (
      57. [building_type] => 4
      58. [level] => 16
      59. )
      60. [4] => stdClass Object
      61. (
      62. [building_type] => 14
      63. [level] => 5
      64. )
      65. [5] => stdClass Object
      66. (
      67. [building_type] => 21
      68. [level] => 3
      69. )
      70. [6] => stdClass Object
      71. (
      72. [building_type] => 22
      73. [level] => 4
      74. )
      75. [7] => stdClass Object
      76. (
      77. [building_type] => 23
      78. [level] => 3
      79. )
      80. [8] => stdClass Object
      81. (
      82. [building_type] => 24
      83. [level] => 2
      84. )
      85. [9] => stdClass Object
      86. (
      87. [building_type] => 31
      88. [level] => 3
      89. )
      90. )
      91. [ships] => Array
      92. (
      93. )
      94. [defense] => Array
      95. (
      96. [0] => stdClass Object
      97. (
      98. [defense_type] => 401
      99. [count] => 11
      100. )
      101. )
      102. [research] => Array
      103. (
      104. [0] => stdClass Object
      105. (
      106. [research_type] => 106
      107. [level] => 4
      108. )
      109. [1] => stdClass Object
      110. (
      111. [research_type] => 108
      112. [level] => 2
      113. )
      114. [2] => stdClass Object
      115. (
      116. [research_type] => 113
      117. [level] => 1
      118. )
      119. [3] => stdClass Object
      120. (
      121. [research_type] => 115
      122. [level] => 3
      123. )
      124. )
      125. [repairOrder] => Array
      126. (
      127. )
      128. )
      129. )
      Display All



      Xinthos89 likes this.

    • Thank you very much.

      I have a problem, though: the universe updates on a monday, a player relocates on a tuesday and i'm trying to save a spy report from a wednesday. How can i connect the report to the planet without keeping and searching the relocation history? The coordinates of the planet have changed, and I don't have the planet id in the report.

      Thank you.

      Regards,
      Xinthos
    • Xinthos89 wrote:

      Thank you very much.

      I have a problem, though: the universe updates on a monday, a player relocates on a tuesday and i'm trying to save a spy report from a wednesday. How can i connect the report to the planet without keeping and searching the relocation history? The coordinates of the planet have changed, and I don't have the planet id in the report.
      No. The id of the planet is hidden by design. Sorry :/
      OGame Tech
    • Hello,

      A lot of problems since this morning regarding XML files: api

      ID alliances have all been changed.

      Example Alliance ID: 14 becomes Alliance ID: 500001

      For informations:
      XML API SK 101 => BUG (1 registered alliance)
      XML API US 131 => BUG (1 registered alliance)



      Inconsistency between the alliance file and the player file

      file :api/alliances.xml

      XML Source Code

      1. <alliance id="500001" name="Planetes Barbares Unifiees" tag="PBU" open="1">
      2. <player id="1003266"/>
      3. </alliance>
      ID alliance: 500001

      file :api/players.xml

      XML Source Code

      1. <player id="1003266" name="rune" status="I" alliance="30"/>
      ID alliance: 30




      Fred

      The post was edited 1 time, last by mmorpg-stat.eu ().

    • Hello,

      I have a problem with the link .....playerData.xml

      I can't access to the page when I give an ID.

      I take an ID from here:
      s106-fr.ogame.gameforge.com/ap…ore.xml?category=1&type=0
      and try
      s106-fr.ogame.gameforge.com/api/playerData.xml?id=159048
      but it fail.

      And when I remove the ID I get the message

      Source Code

      1. Query parameter "id" must be given.
      2. e.g. playerData.xml?id=12345"

      What am i doing wrong ? ?(


      My pride:
    • Choubakawa wrote:

      Hello,

      I have a problem with the link .....playerData.xml

      I can't access to the page when I give an ID.

      I take an ID from here:
      s106-fr.ogame.gameforge.com/ap…ore.xml?category=1&type=0
      and try
      s106-fr.ogame.gameforge.com/api/playerData.xml?id=159048
      but it fail.

      And when I remove the ID I get the message

      Source Code

      1. Query parameter "id" must be given.
      2. e.g. playerData.xml?id=12345"
      What am i doing wrong ? ?(

      Any news about fixing that?
    • mmorpg-stat.eu wrote:

      Inconsistency between the alliance file and the player file

      file :api/alliances.xml

      XML Source Code

      1. <alliance id="500001" name="Planetes Barbares Unifiees" tag="PBU" open="1">
      2. <player id="1003266"/>
      3. </alliance>
      ID alliance: 500001

      file :api/players.xml

      XML Source Code

      1. <player id="1003266" name="rune" status="I" alliance="30"/>
      ID alliance: 30
      1.5 months...
      When will it be fixed? X(
      ROBOL GameForge
    • "This issue is fixed. If you still cannot use it please contact the Origin admins :)"

      Not fixed?

      In aliance:
      Omega93 96 [1:308:7] 2017-07-15 12:01:07

      In API:
      s68-pl.ogame.gameforge.com/api/players.xml

      API wrote:

      <player id="164771" name="markob2" alliance="1039"/>

      <player id="164772" name="Omega93"/>
      "timestamp="1504699807"" = 09/06/2017 @ 12:10pm (UTC)
      Where is the alliance info?

      markob2 is in the alliance s68-pl.ogame.gameforge.com/gam…nfo.php?allianceId=500268
      OGame ID: 500268, API: 1039 ?



      Stop kidding me.
      Did anyone even read my issue or it is automatic generated answer?
      ROBOL GameForge

      The post was edited 1 time, last by ciap ().

    • ciap wrote:

      "This issue is fixed. If you still cannot use it please contact the Origin admins :)"
      I'm curious where you got that answer, would you tell me? Also it was nowhere written that the players.xml is fixed. The playerData.xml has been fixed in the latest version.
      There you can also get the correct info:

      XML Source Code

      1. <alliance id="500268">
      2. <name>United Cities of Space WKU</name>
      3. <tag>UNITED</tag>
      4. </alliance>

      Origin Admin
      OGame-Tech Chief
    • NoMoreAngel wrote:

      ciap wrote:

      "This issue is fixed. If you still cannot use it please contact the Origin admins :)"
      I'm curious where you got that answer, would you tell me? Also it was nowhere written that the players.xml is fixed. The playerData.xml has been fixed in the latest version.There you can also get the correct info:

      XML Source Code

      1. <alliance id="500268">
      2. <name>United Cities of Space WKU</name>
      3. <tag>UNITED</tag>
      4. </alliance>
      Not sure where you check but seems like version 6.5.1 fixed it. (please note each server have own version so playerData for one nationality would work and other not because of older version)