From EVEDev
[edit] /eve/TypeName.xml.aspx
[edit] Overview
Returns the name associated with a typeID.
[edit] Data Caching
This method is cached according to the Modified Short Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| ids
| string
|
- Comma-separated list of typeIDs to query
- A hard maximum of 250 IDs passed in. Might change in the future depending on live results.
- Any instances of repeated ids in the string will throw immediate errors with no returns.
- If an ID is passed into the call that does not resolve the call will not return any results regardless of the validity of other ids.
- Trailing commas on the ids input will throw now errors.
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2012-02-07 17:31:17</currentTime>
<result>
<rowset name="types" key="typeID" columns="typeID,typeName">
<row typeID="12345" typeName="200mm Railgun I Blueprint"/>
</rowset>
</result>
<cachedUntil>2012-02-07 18:31:17</cachedUntil>
</eveapi>
[edit] References