|
|
Description
The Alliance List API retrieves a complete list of all currentl alliances in EVE Online. Closed alliances are not included in the list.
Call
Result
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2007-12-02 19:37:55</currentTime>
<result>
<rowset name="alliances" key="allianceID" columns="name,shortName,allianceID,executorCorpID,memberCount,startDate">
<row name="red citizens" shortName="red.c" allianceID="150382481" executorCorpID="150279367" memberCount="4" startDate="2007-09-18 11:04:00">
<rowset name="memberCorporations" key="corporationID" columns="corporationID,startDate">
<row corporationID="150279367" startDate="2007-09-18 11:04:00" />
<row corporationID="150333466" startDate="2007-09-19 11:04:00" />
</rowset>
</row>
<row name="The Dead Rabbits" shortName="TL.DR" allianceID="150430947" executorCorpID="150212025" memberCount="3" startDate="2007-11-12 16:00:00">
<rowset name="memberCorporations" key="corporationID" columns="corporationID,startDate">
<row corporationID="150212025" startDate="2007-11-12 16:00:00" />
</rowset>
</row>
</rowset>
</result>
<cachedUntil>2007-12-02 20:37:55</cachedUntil>
</eveapi>
When called with version=1 it returns only the alliances not the member corporations:
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="1">
<currentTime>2007-12-02 19:37:55</currentTime>
<result>
<rowset name="alliances" key="allianceID" columns="name,shortName,allianceID,executorCorpID,memberCount,startDate">
<row name="red citizens" shortName="red.c" allianceID="150382481" executorCorpID="150279367" memberCount="4" startDate="2007-09-18 11:04:00">
<row name="The Dead Rabbits" shortName="TL.DR" allianceID="150430947" executorCorpID="150212025" memberCount="3" startDate="2007-11-12 16:00:00">
</row>
</rowset>
</result>
<cachedUntil>2007-12-02 20:37:55</cachedUntil>
</eveapi>
Result attributes
Top Contributors For This Page
|