From EVEDev
[edit] /char/Standings.xml.aspx
[edit] Overview
Returns the standings towards a character from agents, NPC corporations and factions. Since Tyrannis no longer provides standings towards characters or entities, use the Contact List API instead.
[edit] Data Caching
This method is cached according to the Modified Short Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| apiKey
| char(64)
| Limited or Full access API key of account.
|
| characterID
| int
| Character ID of a character that you want the standings for.
|
| userID
| int
| userID of account for authentication.
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2010-10-28 19:16:23</currentTime>
<result>
<characterNPCStandings>
<rowset name="agents" key="fromID" columns="fromID,fromName,standing">
<row fromID="3009841" fromName="Pausent Ansin" standing="0.1" />
<row fromID="3009846" fromName="Charie Octienne" standing="0.19" />
</rowset>
<rowset name="NPCCorporations" key="fromID" columns="fromID,fromName,standing">
<row fromID="1000061" fromName="Freedom Extension" standing="0" />
<row fromID="1000064" fromName="Carthum Conglomerate" standing="0.34" />
<row fromID="1000094" fromName="TransStellar Shipping" standing="0.02" />
</rowset>
<rowset name="factions" key="fromID" columns="fromID,fromName,standing">
<row fromID="500003" fromName="Amarr Empire" standing="-0.1" />
<row fromID="500020" fromName="Serpentis" standing="-1" />
</rowset>
</characterNPCStandings>
</result>
<cachedUntil>2008-09-03 15:20:19</cachedUntil>
</eveapi>
[edit] Output Rowset Columns
| Name
| Type
| Description
|
| fromID
| int
| ID number of agent, NPC corporation, or faction you have standing with. See agtAgents.agentID, crpNPCCorporations.corporationID, and chrFactions.factionID.
|
| fromName
| string
| Name of agent, NPC corporation, or faction you have standing with.
|
| standing
| float
| Current standing with this entity. This is the base standing, not taking into account Connections or Diplomacy skill (see Mission Equations) and is in the range [-10,10].
|