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
6
votes
2 answers

How can I set a date range for requestReport using Amazon Advertising API?

Is it possible to set a date range for requestReport? POST /v2/sp/{recordType}/report { "segment": {segment}, "reportDate": {reportDate}, <-- here "metrics": {metrics} } Or do I need to make 30 request in order to get results for a…
lidox
  • 1,901
  • 3
  • 21
  • 40
5
votes
1 answer

Amazon Advertising API: report is 'in progress' forever, until 'server is busy'

Is anybody else having trouble with Amazon Advertising reports this week or am I doing something wrong? This was working just fine last week, then all of a sudden I couldn't get reports any more. Instead of requesting a report and it being available…
Ryan Monro
  • 59
  • 3
4
votes
0 answers

Amazon Product Advertising API v5 - How to retrieving different type of books (hardcopy, paperback, kindle... ) with one API call

I’m a developer for a company where we’re using Amazon's great product advertising API (PA-API) for a many years for fetching book information. We’re currently using the Java SDK and API v5. Issue We provide our customers directly links with our…
wprogLK
  • 488
  • 5
  • 11
3
votes
2 answers

Why does Amazon Advertising report API return a .bin instead of .json

I am requesting a Sponsered Product report from Amazon's Advertising API. When I send the POST i receive the reportID. I enter the reportID as part of the GET call's path to retrieve the document. I observe the response of type 20, however the…
JaredGibb
  • 83
  • 7
3
votes
4 answers

amazon product advertising api - item lookup request working example

would anyone have a working example of an amazon ITEMLOOKUP ?> i have the following code but it does not seem to work: string ISBN = "0393326381"; string ASIN = ""; if (!(string.IsNullOrEmpty(ISBN) &&…
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
3
votes
1 answer

Amazon Advertising API: ASINs report request returns “Missing campaign type”

Request to API-Endpoint: POST https://advertising-api-eu.amazon.com/v2/asins/report Official documentation: https://advertising.amazon.com/API/docs/en-us/reference/sponsored-products/2/reports Headers: Authorization: Bearer…
tector
  • 977
  • 1
  • 8
  • 31
3
votes
3 answers

Amazon - Can't request performance report using Advertising API

I'm getting an error using amazon advertising API. I'm currently trying to request performance report using https://advertising-api.amazon.com/v1/campaigns/report. But the server reply Cannot consume content type here is my request header and…
Alex
  • 1,148
  • 8
  • 30
3
votes
1 answer

Amazon Product Advertising API does not Match Documentation (Java)?

I'm using the tutorial for Amazon Product Advertising API (here) for Java. I've generated the client code via the WSDL they provide. When going through the code for an ItemLookup, I get to a section where I reference…
Scott
  • 31
  • 2
2
votes
4 answers

Amazon Product Advertising API ItemSearch Returning Null

I have spent entire day trying to fix problems with the Amazon ECS(Ecommerce Services) API. I have downloaded the example on their site for sending SOAP Requests with .NET 4.0 and WCF http://aws.amazon.com/code/Product-Advertising-API/3941 I have…
TheJediCowboy
  • 8,924
  • 28
  • 136
  • 208
2
votes
2 answers

Amazon API ASP.NET

I am working on a site (ASP.NET MVC) that will ultimately display millions of book. I already have the titles and authors of these books in my MySQL database. The goal is when a user searches for book, the top 20 matches (title and author) will…
chrisg229
  • 909
  • 2
  • 7
  • 21
2
votes
1 answer

Multiple elements with the same name with SimpleXML and Java

I'm trying to use SimpleXML to parse an XML document (an ItemLookupResponse for a book from the Amazon Product Advertising API) which contains the following element: Shane Conder Lauren Darcey
LouieGeetoo
  • 868
  • 2
  • 11
  • 26
2
votes
0 answers

How to create an offer for an existing ASIN on Amazon?

I am looking for creating an offer by having the ASIN, and the inventory options (SKU, quantity, price etc). We already have access to the Amazon SP API: const SellingPartnerAPI = require('amazon-sp-api'); const TOKEN = '...'; (async () => { …
2
votes
3 answers

Google goggles with Intent OR Amazon API?

I am planning to make an application, In which I need to get information regarding a book. Method which I am having in my mind is to capture an image and let "Google goggles" get information for me. Else I overheard from somewhere that I can use…
TeaCupApp
  • 11,316
  • 18
  • 70
  • 150
2
votes
0 answers

How to solve error Profile does not support product ads on Amazon Ads API

I am using the Amazon Advertising API and when requesting the campaign list for either the sponsored products or sponsored brands endpoint I get {"code":"400","details":"Profile does not support product ads","requestId":"23SEDRS6NYJD8EHE7CS8"} I'm…
Jaxidoxium
  • 33
  • 3
2
votes
3 answers

Using AWS to do product lookup by UPC to get the products ASIN

I am tasked right now to figure out a way my company can do a product search by UPC so we can grab the ASIN (Amazon Serial Identification Number). I was hoping someone could lead me in the right direction into what Amazon API I could use to do this.…
Lewis Cutter III
  • 323
  • 4
  • 15
1
2 3 4 5 6 7