Questions tagged [amazon-advertising-api]

Amazon offers professional sellers the opportunity to advertise their products on Amazon. The API allows you to programmatically manage Sponsored Products campaigns, ad groups, ads, keywords, bids, and budgets. In addition, detailed reporting for Sponsored Products and Headline Search Ads allows you to pull performance data to analyze sales and investments.

Links:

  1. Documentation

  2. GitHub

  3. Get API access

102 questions
0
votes
0 answers

Keywords recommendation not working. Amazon advertising api v3

I'm trying to implement the https://advertising-api.amazon.com/sp/targets/keywords/recommendation API but for some reason I always get {"message":"Unauthorized"} even tough everything else works with the credentials. Is this because this API is on…
Lincoln
  • 880
  • 14
  • 25
0
votes
1 answer

Is it possible to get account wide clicks count with the amazon advertising API

I guess its possible to aggregate the clicks via /v2/sp/{recordType}/report and /v2/hsa/{recordType}/report e.g. with the compaign dimension. But since there might be row limitations, I wonder if there is a simpler way to get account or at least…
Nick Russler
  • 4,608
  • 6
  • 51
  • 88
0
votes
1 answer

Where to store private keys for firefox add-ons

I'd like to develop an firefox add-on that will require access to the Amazon Product Advertising API. This is granted by using private access tokens after signing up for it. Now I was wondering if there is a way of keeping the access information…
0
votes
2 answers

Amazon Advertisng api settup invalid scope error

I have client id and access token . After sending this api request . https://www.amazon.com/ap/oa?client_id=YOUR_LWA_CLIENT_ID&scope=cpc_advertising:campaign_management&response_type=code&redirect_uri=YOUR_RETURN_URL It return this error…
0
votes
0 answers

Amazon Advertising API: Is there a way to get more than 100 results in a Report Request, or to get reports for specific campaigns, keywords etc

I am developing an app that handles scheduling bids for campaigns and keywords, and need to be able to get the clicks, costs, sales etc. to analyse and make suggestions. The only way I can see to get this data is by requesting and then downloading…
CCalvert
  • 3
  • 3
0
votes
1 answer

Cannot find the Amazon redirected url in the BeautifulSoup (Python). Any idea from where to get the redirect url?

I'm trying to get the Amazon advertising data using the Amazon Advertising API. I have to open a specific link: "https://www.amazon.com/ap/oa?client_id=...&scope=cpc_advertising:campaign_management&response_type=code&redirect_uri=https://.../" ,…
0
votes
2 answers

How to get account name using Amazon Advertising Api V2?

I am using Amazon advertising api version V2. According to the [https://advertising.amazon.com/API/docs/v2/reference/profiles], the get profile api gives account name. But I am not getting name in account details. Following is the response I am…
0
votes
0 answers

amazon advertising api v2 createCampaigns fail

There was an error using Amazon's advertising API CreateCampaigns: {"code":"422","details":"The server understood your request but was unable to process one or more…
张腾飞
  • 1
  • 3
0
votes
2 answers

Advertising API issue :error_description=An+unknown+scope+was+requested&error=invalid_scope

My purpose is to download the advertising report, but I encounter Advertising API issue on below step 4 of Authorization. I should get the authorization code but get below screen-shot error…
Jameson
  • 1
  • 2
0
votes
1 answer

Python Requests Login to Login With Amazon to get Access Token for Amazon Advertising API

I am trying to use python requests to receive my access token for the Amazon Advertising API. The procedure is outlined here: https://advertising.amazon.com/API/docs/v2/guides/authorization Here is what I tried CLIENT_ID = MyClientID CLIENT_SECRET =…
Guguma
  • 93
  • 1
  • 8
0
votes
0 answers

How to create a full purchase experience with product advertising api on your website

I want to create a store website using amazon's product advertising api, and as I understand, what you actually get from amazon is the products with a shop now button that is taking you to the amazon website to purchase it, something like this: …
0
votes
1 answer

MP3 tags from Amazon?

A lot of MP3 tagging tools (ex: http://www.mp3tag.de/en/) query Amazon to get tag data. How are they doing this, does amazon have an API for it?
Mike
  • 1,784
  • 1
  • 12
  • 12
0
votes
1 answer

Amazon Product Advertising API search error - 'itemsearcherrorresponse' with no additional error information

Suddenly, today, I could not continue to perform ItemSearch queries on the Amazon Product Advertising API. This is the complete XML error response I get.
0
votes
1 answer

Amazon Advertising API: Cannot locate SignedRequestHelper class

I have got code from amazon scratchpad and got the package required. The SignedRequestHelper class is not in the package and i am unable to run the program. I am attempting to get the price of the item using the amazon asin number. package…
Max01
  • 1
  • 2
0
votes
1 answer

Urls expire due to timestamp authentication in scrapy

I was trying to crawl amazon grocery uk, and to get the grocery categories, I was using the Associate Product Advertising api. My requests get enqueued however as the requests have an expiry of 15 mins, some requests are crawled after 15 mins of…