EVE Online ·Screenshots & Art ·Backstory ·F. A. Q. ·Features ·Item Database ·Community ·Player Guide ·Create Account ·RSS Feeds EVE Download ·EVE Client ·EVE Patches ·EVE Videos ·EVE Music ·EVE Banners EVE Insider ·Players News Center ·Forums ·Dev Blog ·Patch Notes ·Volunteer Program ·Game Events ·My Account ·CSM ·My Character ·Fan Submissions ·Dictionary ·Buddy Program ·Bug Reporting EVE Support ·Knowledge Base ·Create New Petition ·My Petitions ·Game Policies ·Known Issues EVE Store ·Categories ·Cart ·Checkout ·Customer Registration ·Order Tracking ·Customer Login ·Shipping Prices EVE News ·Press ·Press Releases ·Press Reviews ·Awards and Accolades ·Newsletters ·Quotes ·News Archive
Search

Fanfest 2008
Fanfest 2008
EVE Fan Fest 2006
EVE Fan Fest 2006
Chronicles
The Scope is the largest news agency in the world of EVE
Buddy Program
Buddy Program
Chronicles
A squadron of Rifters en route to the Ammatar outpost. Though most of the raids take place  close to Minmatar space there are tales of daring raids deep into Amarr space.
Chronicles
Let us only hope the search never ends, that the Absolute Truth stays hidden forever. For if the search ends, we end.

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.