EVE API - Generic Data
Data that is uncategorized goes here. Most likely there's not enough of that type to warrant its own page. This data does not require any authentication, so you do not need to send any of those parameters.
/eve/SkillTree.xml.aspx
Returns an XML formatted copy of the EVE skilltree. This includes all skills
in the game. Note that only market/valid skills are included, so you won't see internal skills such
as Polaris.
Method Parameters
There are no inputs for this method.
Method Sample Output
<eveapi version="1">
<currentTime>2007-06-20 15:02:13</currentTime>
<result>
<rowset name="skillGroups" key="groupID">
<row groupName="Corporation Management" groupID="266">
<rowset name="skills" key="typeID">
<row typeName="Anchoring" groupID="266" typeID="11584">
<description>
Skill at Anchoring Deployables. Can not be trained on Trial Accounts.
</description>
<rank>3</rank>
<rowset name="requiredSkills" key="typeID"/>
<requiredAttributes>
<primaryAttribute>memory</primaryAttribute>
<secondaryAttribute>charisma</secondaryAttribute>
</requiredAttributes>
<rowset name="skillBonusCollection" key="bonusType">
<row bonusType="canNotBeTrainedOnTrial" bonusValue="1"/>
</rowset>
</row>
<row typeName="CFO Training" groupID="266" typeID="3369">
<description>
Skill at managing corp finances. 5% discount on all fees at non-hostile NPC station if acting as CFO of a corp.
</description>
<rank>3</rank>
<rowset name="requiredSkills" key="typeID">
<row typeID="3363" skillLevel="2"/>
<row typeID="3444" skillLevel="3"/>
</rowset>
<requiredAttributes>
<primaryAttribute>memory</primaryAttribute>
<secondaryAttribute>charisma</secondaryAttribute>
</requiredAttributes>
<rowset name="skillBonusCollection" key="bonusType"/>
</row>
</rowset>
</row>
</rowset>
</result>
</eveapi>
The rest of the example output has been snipped. You get the idea.
/eve/RefTypes.xml.aspx
The wallet journal view contains various reference types,
this page just lists all of them.
Method Parameters
There are no inputs for this method.
Method Sample Output
<eveapi version="1">
<currentTime>2007-06-18 22:43:27</currentTime>
<result>
<rowset name="refTypes">
<row refTypeID="0" refTypeName="Undefined"/>
<row refTypeID="1" refTypeName="Player Trading"/>
<row refTypeID="2" refTypeName="Market Transaction"/>
<row refTypeID="3" refTypeName="GM Cash Transfer"/>
<row refTypeID="4" refTypeName="ATM Withdraw"/>
<row refTypeID="5" refTypeName="ATM Deposit"/>
</rowset>
</result>
<cachedUntil>2007-07-18 22:43:27</cachedUntil>
</eveapi>
The rest of the example output has been snipped. You get the idea.





















