Description
The Factional Warfare Statistics API retrieves statistics for all members of the specified characterʼs corporation including their faction ID and rank and kill and victory point totals for the previous day and week.
Call
Result
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2010-12-29 19:29:44</currentTime>
<result>
<factionID>500001</factionID>
<factionName>Caldari State</factionName>
<enlisted>2010-5-13 19:29:44</enlisted>
<pilots>2</pilots>
<killsYesterday>0</killsYesterday>
<killsLastWeek>0</killsLastWeek>
<killsTotal>0</killsTotal>
<victoryPointsYesterday>0</victoryPointsYesterday>
<victoryPointsLastWeek>1144</victoryPointsLastWeek>
<victoryPointsTotal>0</victoryPointsTotal>
</result>
<cachedUntil>2010-12-29 20:29:44</cachedUntil>
</eveapi>
Result if not enlisted in Factional Warfare
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2010-12-29 19:29:44</currentTime>
<error code="125">Corporation not enlisted in Factional Warfare</error>
<cachedUntil>2010-12-29 20:29:44</cachedUntil>
</eveapi>
Result attributes
| Name
| Type
| Description
|
| factionID
| int
| Faction's ID number.
|
| factionName
| string
| Name of faction.
|
| enlisted
| date string
| Date and time of corporation's enlistment in factional warfare.
|
| pilots
| int
| Number of corporation's pilots.
|
| killsYesterday
| int
| Number of factional warfare kills corporation made yesterday.
|
| killsLastWeek
| int
| Number of factional warfare kills corporation made last week.
|
| killsTotal
| int
| Total umber of factional warfare kills corporation has made.
|
| victoryPointsYesterday
| int
| Number of factional warfare points accumulated yesterday.
|
| victoryPointsLastWeek
| int
| Number of factional warfare points accumulated last week.
|
| victoryPointsTotal
| int
| Total number of factional warfare points accumulated by the corporation.
|
Top Contributors For This Page