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

My POSTMAN requests works, but my seemingly identical IDE requests don't

PARTIALLY SOLVED - I changed the request from requests.post(url, headers = headers, data = data) to: requests.post(url, headers = headers, json = data) and now it works. I am not sure why... Original Post: The code I am using below continues to…
0
votes
1 answer

Trying to Retrieve Report from Amazon Ads API

I am trying to retrieve a report that I generated, and shows a 'status' of 'successful'. When I run the script below, I receive a 200 response. However, per the docs: "A successful call returns a 307 redirect response. The redirect link points you…
ah2Bwise
  • 82
  • 2
  • 17
0
votes
1 answer

cannot consume content type Rest API Response from Amazon Advertising API

I am hitting the /sb/negativeKeywords endpoint and every time I try to make a POST request, I get the following error: StatusCodeError: 415 - {"code":"415","details":"Cannot consume content type"} Notice that the documentation asks for a media type…
0
votes
0 answers

Multiple Advertisers in Login With Amazon

we currently building an app, the goal is to provide our customers who are amazon advertisers with a customized dashboard to manage their own Amazon data, we create LWA by following these steps…
ira
  • 534
  • 1
  • 5
  • 17
0
votes
1 answer

Amazon Marketing Cloud - CAST Function and SQL Documentation

I am using Amazon Marketing Cloud (AMC) for work and I am having trouble applying a WHERE [column] <> ''. The CSV file that is output is large and it contains many records with nothing in the main ID column. I am able to filter out the nulls, but…
Frosty_Fraz
  • 47
  • 1
  • 11
0
votes
1 answer

Amazon Advertising API - Error code 422 while POST keywords

I'm getting this error using Amazon Advertising API while trying to create new keywords: "code":"422" This is my PHP Code: curl_setopt($ch, CURLOPT_URL, $std_url . "/v2/sp/keywords"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch,…
henankoko
  • 11
  • 1
0
votes
1 answer

Which field show the units sold when we request to create amazon advertising report for Sponsor Brand with record type is keyword?

I request to create Amazon advertising report for Sponsor Brand campaign with record type is keywords. But unfortunately I don't know which field show the units sold by keyword. I tried to use field "unitsSold14d" in postman but it said "Unsupported…
0
votes
2 answers

Amazon Advertising Api - reports data processing (ACOS, ROAS, Organic Sales, Ad Sales)

I'm trying to process Amazon data and get some calculated results such as ACOS, ROAS, Organic Sales(direct sales not from ads) and Ad Sales or Ad revenues. I have pulled data from Amazon Advertising API reports for sponsored products, brands &…
0
votes
2 answers

Advertising Accounts not found in v2/profiles

i am new to Amazon Advertising API. I have Advertising Access with my KDP and my MBA Account on amazon. I am also a data scientist, therefore i want to analyse my campaigns more deeply in R. So i managed to get my accesst_token and refresh_token,…
0
votes
1 answer

Determine which marketplace a Sponsored Product belongs to - in Amazon Advertising API

Currently I am pulling reports for SponsoredProducts and save it in database for modifications of results displayed to the user. The frontend app has filtering functionality by marketplace. How do you determine which Marketplace a Sponsored Product…
rai
  • 197
  • 2
  • 14
0
votes
1 answer

Amazon Selling Partner Api - empty profiles

Currently I am developing an app that uses Amazon's Advertising API. So far already done the required process. I can test the api using the sandbox. However, for getting real data, I cant get profileId as value for the Amazon-Advertising-API-Scope…
rai
  • 197
  • 2
  • 14
0
votes
1 answer

Getting bid recommendations for keywords without creating keywords

I have been trying to get bid recommendations for a list of given keywords using this API => https://advertising.amazon.com/API/docs/en-us/sponsored-products/2-0/openapi#/Bid%20recommendations/createKeywordBidRecommendations But it requires to…
0
votes
1 answer

Not authorized to access scope - Amazon Advertising API

My purpose is to download the advertising report using existing application details such as AMAZON_CLIENT_ID, AMAZON_CLIENT_SECRET & Access tokens to other java application. I was able to get the new access token using AMAZON_CLIENT_ID,…
Manju
  • 199
  • 1
  • 2
  • 10
0
votes
2 answers

Downloading Reports in Amazon Advertising API

I got the Report Id and using the Report Id i could get S3 Downloadable link. But when i try to use the link it shows - Access Unauthorised.
Prasand Kumar
  • 145
  • 1
  • 7
0
votes
1 answer

Amazon Advertising API - Creating a new sponsored product campaign

I'm trying to create new sponsored products campaigns from the amazon advertising API but I'm having some problems with the API documentation. I can't find any information on how to create an advertising campaign for a specific product. Do you have…