Search

EVE Chronicle
President Foiritan combines stern authority with charm and grace to make a perfect blend for someone who must lead and appeal at the same time, setting the foundation for a very successful presidency.
Buddy Program
Buddy Program
EVE Chronicle
Speakers of Truth
EVE Chronicle
Postnatal

EVE API - Character Sheet

The character sheet is an exact replication of the previous MyEVE functionality. There should be no surprises here.

/char/CharacterSheet.xml.aspx
Returns an XML formatted character sheet.
Method Parameters
namedata type description/purpose
userID number user account number
apiKey stringer user authentication token
characterID number character to get character sheet of
Method Sample Output
<eveapi version="1">
    <currentTime>2007-06-18 22:49:01</currentTime>
    <result>
        <characterID>150337897</characterID>
        <name>corpslave</name>
        <race>Minmatar</race>
        <bloodLine>Brutor</bloodLine>
        <gender>Female</gender>
        <corporationName>corpexport Corp</corporationName>
        <corporationID>150337746</corporationID>
        <balance>190210393.87</balance>
        <attributeEnhancers>
            <intelligenceBonus>
                <augmentatorName>Snake Delta</augmentatorName>
                 <augmentatorValue>3</augmentatorValue>
             </intelligenceBonus>
             <memoryBonus>
                 <augmentatorName>Halo Beta</augmentatorName>
                 <augmentatorValue>3</augmentatorValue>
             </memoryBonus>
         </attributeEnhancers>
        <attributes>
            <intelligence>6</intelligence>
            <memory>4</memory>
            <charisma>7</charisma>
            <perception>12</perception>
            <willpower>10</willpower>
        </attributes>
        <rowset name="skills" key="typeID">
            <row typeID="3431" level="3" skillpoints="8000"/>
            <row typeID="3413" level="3" skillpoints="8000"/>
            <row typeID="21059" level="1" skillpoints="500"/>
            <row typeID="3416" level="3" skillpoints="8000"/>
        </rowset>
    </result>
    <cachedUntil>2007-06-18 23:49:01</cachedUntil>
</eveapi>

The format is only minorly changed from the original MyEVE character sheet XML, so applications that previously parsed this information should have very little problem doing so now.

/char/SkillInTraining.xml.aspx
Returns an XML view of a character's currently training skill.
Method Parameters
namedata type description/purpose
userID number user account number
apiKey stringer user authentication token
characterID number character to get skill training info of
Method Sample Output

With no skill in training:

<eveapi version="1">
    <currentTime>2007-06-21 10:57:10</currentTime>
    <result>
        <skillInTraining>0</skillInTraining>
    </result>
    <cachedUntil>2007-06-21 10:57:20</cachedUntil>
</eveapi>

Training Amarr Titan to level 2:

<eveapi version="1">
    <currentTime>2007-06-21 11:01:10</currentTime>
    <result>
        <trainingEndTime>6/21/2007 9:27:50 PM</trainingEndTime>
        <trainingStartTime>6/21/2007 11:00:38 AM</trainingStartTime>
        <trainingTypeID>3347</trainingTypeID>
        <trainingStartSP>4000</trainingStartSP>
        <trainingDestinationSP>22628</trainingDestinationSP>
        <trainingToLevel>2</trainingToLevel>
        <skillInTraining>1</skillInTraining>
    </result>
    <cachedUntil>2007-06-21 11:01:20</cachedUntil>
</eveapi>

The format is only minorly changed from the original MyEVE character sheet XML, so applications that previously parsed this information should have very little problem doing so now.