EVE API - Wallet Data
Wallet information is fairly straightforward. Available both to characters and corporations (if the character is a Junior Accountant, Accountant, Director, or CEO).
/char/AccountBalance.xml.aspx
/corp/AccountBalance.xml.aspx
/corp/AccountBalance.xml.aspx
Returns an XML formatted dump of the wallet(s) belonging to a
character or corporation as well as their current balance. This information can be
used to follow up with calls to the relevant Journal/Transaction views, given the
account keys contained in the output.
Method Parameters
| name | data type | description/purpose |
|---|---|---|
| userID | number | user account number |
| apiKey | stringer | user authentication token |
| characterID | number | for char mode, ID of character; in corp mode we use this character's corp |
Method Sample Output
<eveapi version="1">
<currentTime>2007-06-18 22:40:16</currentTime>
<result>
<rowset name="accounts">
<row accountID="4759" accountKey="1000" balance="74171957.08"/>
<row accountID="5687" accountKey="1001" balance="6.05"/>
<row accountID="5688" accountKey="1002" balance="0.00"/>
<row accountID="5689" accountKey="1003" balance="17349111.00"/>
<row accountID="5690" accountKey="1004" balance="0.00"/>
<row accountID="5691" accountKey="1005" balance="0.00"/>
<row accountID="5692" accountKey="1006" balance="0.00"/>
</rowset>
</result>
<cachedUntil>2007-06-18 22:40:26</cachedUntil>
</eveapi>
Corporate output above. Character is exactly the same, but they only have one entry, accountKey of 1000. Note that for the corporation, accountKey of 1000 is the first division (master wallet), 1001 is second division, up to 1006 which is the seventh division.





















