Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3665982
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T01:49:34+00:00 2026-05-19T01:49:34+00:00

Amazon recently changed their APIs which and it seems there’s no way now to

  • 0

Amazon recently changed their APIs which and it seems there’s no way now to access my WishList on Amazon programmatically using these APIs. Anybody knows any way to do it besides screen-scraping? Maybe some third-party service (I don’t mind working with only public data)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T01:49:35+00:00Added an answer on May 19, 2026 at 1:49 am

    For screen scraping, the compact layout style might be helpful: http://bililite.com/blog/2010/10/31/hacking-my-way-to-an-amazon-wishlist-widget/

    Update

    I did some hacking of my own in google spreadsheets and managed to get 2 basic implementations working.

    Using Google Apps Scripts:

    Type your wishlist ID into cell A1. Copy and paste the following into a google apps script (Tools > Scripts > Scripts Editor), and run the getWishlist function:

    function getWishlist(){
      var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheets()[0];
      var wishlistId = sheet.getRange('a1').getValue(); 
      var response = UrlFetchApp.fetch("http://www.amazon.co.uk/registry/wishlist/" + wishlistId + "?layout=compact").getContentText();
      var asinRegex = /name="item.([\d]+)\.(?:[A-Z0-9]+).([A-Z0-9]+).*/g
      while (match = asinRegex.exec(response)) {
        var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheets()[0];
        var rowIndex = Number(match[1])+2;
        var asin = match[2];
        setRow(sheet, rowIndex, asin);
        var offers = UrlFetchApp.fetch("http://www.amazon.co.uk/gp/offer-listing/" + asin).getContentText();    
        setRow(sheet, rowIndex, asin, 
               getFirstMatch(/class="producttitle">(.+)</g, offers),
               getFirstMatch(/class="price">(.+)</g, offers));
      }  
      Browser.msgBox("Finished");
    }
    
    function getFirstMatch(regex, text) {
      var match = regex.exec(text);
      return (match == null) ? "Unknown" : match[1];
    }
    
    function setRow(sheet, index, a, b, c) {
      sheet.getRange('a' + index).setValue(a);
      sheet.getRange('b' + index).setValue(b);
      sheet.getRange('c' + index).setValue(c);
    }
    

    ​
    ​
    NB, I’m having some probs with regex matching the title / price. Not sure why, but shows the basic idea.

    Using Google Spreadsheet Functions

    Type your wishlist ID into cell A1.

    Type the following function into A2. It will populate the cell and all below it with the id strings for each item in your wishlist:

    =importXML("http://www.amazon.co.uk/registry/wishlist/"&A1&"?layout=compact", "//*[starts-with(@name, 'item.')]/@name")
    

    Type the following function into B2, which will extract the asin from the id string:

    =right(A2, 10)
    

    Type the following function into B3, which will fetch the offer listing for the asin in B2 and display the title:

    =importXML("http://www.amazon.co.uk/gp/offer-listing/"&B2, "//h1")
    

    Type the following function into B4, which will fetch the offer listing for the asin in B2 and display all the prices:

    =concatenate(importXML("http://www.amazon.co.uk/gp/offer-listing/"&B2, "//span[@class='price']"))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Folks, I had a quick question about Amazon EC2, I have been recently using
I'm using Amazon Linux EC2 AMI, recently I'm getting this error barrier-based sync failed
Amazon recently announced support for Oracle in their RDS product line: http://aws.amazon.com/rds/oracle/ I was
I've recently setup a new site which utilises Amazon Cloudfront to distribute very large
We've recently implemented Amazon S3 in our site which led us to change the
I recently got into using the Amazon AWS but it looks quite weird to
I've been using Amazon EC2 for hosting a recently released website, mainly to gauge
For Amazon RDS, there is a metric called Avg Replica Lag in Cloudwatch. The
Since Amazon offers a great way to run static sites off S3. I am
Using CarrierWave and Amazon S3, I'm able to store images from local files, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.