Jump to content
UBot Underground

[Ask] Amazon Buyer Keyword Api?


Recommended Posts

Hey guys,

 

I saw another tool that had the ability to query Amazon for keywords

that were the most searched for a particular keyword and I can't seem

to find out what they're using to pull that data.

I did find this url

http://t1-completion.amazon.com/search/complete?method=completion&q=$q&search-alias=aps&client=amazon-search-ui&mkt=1&x=updateISSCompletion&sc=1

But this only pulls like 10 autocomplete queries I think is what that does.

Does anyone know how to query Amazon for buyer keywords related to a specific keyword?

 

 

  • Like 1
Link to post
Share on other sites

Chris,

 

Try these combinations

Buyer Keyword + (A-Z)

(A-Z) + Buyer Keyword 

Buyer Keyword + (AA-ZZ)

(AA-ZZ) + Buyer Keyword 

It will bring u a ton of related keywords, you can start ur seed keyword search from Amazon Best Seller . Hope it helps

Link to post
Share on other sites

Not sure what you mean Abbas.

 

I'm hoping to be able to reverse engineer the actual tool and see how they're doing it and replicate it in uBot.

Link to post
Share on other sites

Right but that doesn't work for me using the url and input query for some reason.

 

The tool I'm after must be hitting a different url or part of their API. I only found that

url via Google so I'm not sure if Amazon has an API specifically for this as I haven't

located it on their developers site.

Link to post
Share on other sites

Maybe this might be what you are looking for.

ui text box("Prefix", #pre)
ui save file("Save", #save)
clear list(%alph)
clear list(%results)
add list to list(%alph, $list from text("a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z", ","), "Delete", "Global")
loop(26) {
    navigate("http://t1-completion.amazon.com/search/complete?method=completion&q={#pre}%20{$next list item(%alph)}&search-alias=aps&client=amazon-search-ui&mkt=1&x=updateISSCompletion&sc=1", "Wait")
    wait(1)
    set(#result, $replace regular expression($find regular expression($document text, ",\\[\"(.*?)\"\\]"), "(,\\[\"|\"|\\])+", ""), "Global")
    add list to list(%results, $list from text(#result, ","), "Delete", "Global")
    save to file(#save, %results)
}
  • Like 2
Link to post
Share on other sites

It is working on my side and i can see the results in fiddler as well as using ubot. Check the Links

 

http://prntscr.com/6sd146 

 

http://prntscr.com/6sd1cw

 

 

Use another IP if u are not getting results, ur ip might be black listed. 

 

Follow the above code example by ds062692 and instead of navigate use "http get" for speedy results, results u can parse with json parser.

 

 

Not sure what you mean Abbas.

 

I'm hoping to be able to reverse engineer the actual tool and see how they're doing it and replicate it in uBot.

Link to post
Share on other sites
  • 3 weeks later...

by "buyer keywords", you're referring to the Amazon Suggested Search, correct?   As opposed to the keywords that actually convert to sales (e.g. Amazon PPC).

Link to post
Share on other sites

by "buyer keywords", you're referring to the Amazon Suggested Search, correct?   As opposed to the keywords that actually convert to sales (e.g. Amazon PPC).

 

Those are Amazon suggest keywords but since Amazon is a marketplace it will return a lot of buyer keywords for example tv s might return tv stand, tv speakers and so on. A lot of these could be long tail niched keywords as well so it could work for PPC (example: tv stand f = results like tv stand for 55 inch tv so a buyer keyword for sure!)

  • Like 1
Link to post
Share on other sites

 

Maybe this might be what you are looking for.

ui text box("Prefix", #pre)
ui save file("Save", #save)
clear list(%alph)
clear list(%results)
add list to list(%alph, $list from text("a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z", ","), "Delete", "Global")
loop(26) {
    navigate("http://t1-completion.amazon.com/search/complete?method=completion&q={#pre}%20{$next list item(%alph)}&search-alias=aps&client=amazon-search-ui&mkt=1&x=updateISSCompletion&sc=1", "Wait")
    wait(1)
    set(#result, $replace regular expression($find regular expression($document text, ",\\[\"(.*?)\"\\]"), "(,\\[\"|\"|\\])+", ""), "Global")
    add list to list(%results, $list from text(#result, ","), "Delete", "Global")
    save to file(#save, %results)
}

Would you have the script for kindle store? 

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...