Advertisement
Mel8769

API Item Price

Aug 27th, 2016
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.35 KB | None | 0 0
  1. function Test(itemID) {
  2.  
  3.   var myUrl = "https://api.guildwars2.com/v2/commerce/prices/sells/"+ escape(itemID);
  4.  
  5.   var jsonData = UrlFetchApp.fetch(myUrl);
  6.  
  7.   var jsonString = jsonData.getContentText();
  8.  
  9.   var jsonObject = JSON.parse(jsonString).result;
  10.  
  11.   var adjustedValue = (jsonObject.unit_price /100);
  12.  
  13.   return adjustedValue;  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement