Posted On: August 17th, 2009
Posted By: bracket
Please use the private message system here on my.lotro or on the forums to request API keys. I don’t respond to comments or wall posts. Also, it’s probably in your own best interest not to post your email address in those places either. They are publicly visible on the Internet and can be seen by anyone, from search engines to spammers. PMs are private, quick, and don’t require any undue exposure of email addresses or other personal information.

Loading ...
Posted On: April 9th, 2009
Posted By: bracket
I’m happy to announce a new beta resource for you developer types out there: data.lotro.com.
This site aims to be a resource for any 3rd party developers interested in creating their own applications that need actual game data to power them: web applications, forum integration, operating system widgets, and so on. The site uses a simple REST-ful API to access various methods to retrieve XML data. Currently, guild rosters and character sheet data are available though we have plans to continue adding more services as time permits.
If the previous paragraph makes some amount of sense to you, the first step you should take is to send me a private message here on MyLOTRO or on the forums requesting an API key. Please include a short developer name and I will generate a key for you as soon as possible. This is currently a manual process, so it may take up to a couple of days to get a response back.
Here’s a quick example to whet your appetite:
A URL like this (character chosen at random):
http://data.lotro.com/DEVELOPER/API_KEY/charactersheet/w/Landroval/c/Valdidar/
will respond with something like this:
<?xml version="1.0" encoding="UTF-8" ?>
<apiresponse>
<character name="Valdidar" world="Landroval" monster="0" race="Race of Man" class="Lore-master" level="53" origin="Gondor">
<guild name="Knights of the White Lady" rank="Member" type="Mixed Kinship Theme" />
<vocation name="Armsman">
<professions>
<profession name="Weaponsmith" proficiency="5" mastery="5" />
<profession name="Woodworker" proficiency="4" mastery="3" />
<profession name="Prospector" proficiency="6" mastery="5" />
</professions>
</vocation>
<pvmp ratingPoints="1111.44" gloryPoints="4789" gloryRank="3" />
<stats>
<stat name="morale" value="2996" />
<stat name="power" value="2206" />
<stat name="armour" value="1987" />
<stat name="might" value="117" />
<stat name="agility" value="194" />
<stat name="vitality" value="318" />
<stat name="will" value="277" />
<stat name="fate" value="286" />
<stat name="radiance" value="0" />
<stat name="meleeCrit" value="920" />
<stat name="rangedCrit" value="388" />
<stat name="tacticalCrit" value="784" />
<stat name="fearResistance" value="554" />
<stat name="woundResistance" value="636" />
<stat name="diseaseResistance" value="636" />
<stat name="poisonResistance" value="636" />
<stat name="commonDef" value="2104" />
<stat name="fireDef" value="715" />
<stat name="frostDef" value="715" />
<stat name="shadowDef" value="1254" />
<stat name="lightningDef" value="715" />
<stat name="acidDef" value="715" />
<stat name="block" value="N/A" />
<stat name="evade" value="1660" />
<stat name="parry" value="1880" />
</stats>
<equipment>
<item name="Hat of the Elder Days" slot="Head" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879094671" />
<item name="Survivor's Robe" slot="Chest" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879145632" />
<item name="Feldskyn Leggings" slot="Legs" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879102465" />
<item name="Gloves of the Elder Days" slot="Gloves" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879094666" />
<item name="Scholar of Nâr-khelab" slot="Boots" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879145637" />
<item name="Tathredhranc" slot="Shoulder" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879115954" />
<item name="Elrond's Radiant Cloak" slot="Back" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879103587" />
<item name="Polished Beryl Bracelet" slot="Bracelet1" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879093015" />
<item name="Polished Beryl Bracelet" slot="Bracelet2" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879093015" />
<item name="Geirfast's Rejoice" slot="Necklace" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879139246" />
<item name="Thick Gold Ring" slot="Ring1" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879097424" />
<item name="Bróin's Ring" slot="Ring2" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879145663" />
<item name="Stíling's Reward" slot="Earring1" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879139233" />
<item name="Etched Beryl Earring" slot="Earring2" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879093020" />
<item name="Phial of the Swirling Waters" slot="Pocket1" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879052728" />
<item name="Loremaster's Staff of the Third Age" slot="Weapon_Primary" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879146805" />
<item name="Blade of Keriä" slot="Weapon_Secondary" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879115253" />
<item name="Ancient Iron Prospector's Tools" slot="CraftTool" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879055274" />
<item name="Lore-master's Book" slot="Last" lorebookEntry="http://lorebook.lotro.com/wiki/Special:LotroResource?id=1879145850" />
</equipment>
</character>
</apiresponse>
If this look interesting to you, please check out the full documentation.

Loading ...