From EVEDev
[edit] /char/AccountBalance.xml.aspx
[edit] Overview
Returns the ISK balance of a character.
[edit] Data Caching
This method is cached according to the Short Cache Style.
[edit] Input Arguments
[edit] Legacy API Key
| Name
| Type
| Description
|
| userID
| int
| userID of account for authentication.
|
| apiKey
| char(64)
| Limited or Full access API key of account.
|
| characterID
| int
| The ID of the character for the requested data, from Character List.
|
[edit] Customizable API Key
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2007-12-16 11:55:31</currentTime>
<result>
<rowset name="accounts" key="accountID" columns="accountID,accountKey,balance">
<row accountID="4807144" accountKey="1000" balance="209127823.31" />
</rowset>
</result>
<cachedUntil>2007-12-16 12:10:31</cachedUntil>
</eveapi>
[edit] Output Rowset Columns
| Name
| Type
| Description
|
| accountID
| int
| ID number of the account.
|
| accountKey
| int
| Account identifier, always 1000 for characters.
|
| balance
| decimal
| Amount of ISK the character has.
|
[edit] References