Disable All Advertising
EAN-130826663190809   EAN-13 barcode 0826663190809
UPC-A826663190809   UPC-A barcode 826663190809
Product NameMy Neighbor Totoro 30th Anniversary Edition
Amazon.comA Buy on Amazon ~ B07HBYHWV9
Similar Items9781974703715: Dragon Ball: That Time I Got Reincarnated as Yamcha!
0888574535421: Teen Titans: The Complete First Season [Blu-ray]
0883929596003: 2001: A Space Odyssey
0826663187328: Bill & Ted's Excellent Adventure
0826663180985: Mac And Me
0782009244684: Pokemon: Indigo League - Season 1 Champion's Edition [Blu-ray]
0782009244431: Pokmon The Movies 1-3 Steelbook Blu-ray Collection
0715515197410: Ghost World
0683904633385: Shield - The Complete Series
0191329076453: The Prince of Egypt
Created09-18-2018 6:49:13pm
Modified04-26-2022 6:11:57am
MD5a010b0e4e7ab59ebe5802071a085fc0f
SHA2563ce3a3bd1691984eec8269d6933777d9a36edec4d315614e3aec9b75bad4c227
Search Googleby EAN or by Title
Query Time0.0161250

An article of interest

Making use of the tools we offer

Data Feed API v3 - Access and Data Layout

This describes how to use version 3.x of the data feed. Version 2.x of the feed is still supported. Version 1.x of the feed is no longer supported in any way.

IMPORTANT: Starting with version 3.2, we have a new property and a new way of dealing with product images. Read about it here.

Accessing the data requires your account to have an active data feed. This switch can be turned on or off on the data feed page. This is also where you will be able to view your KEYCODE which is required to make calls to the feed.

Main changes from version 2.x to 3.x include (but not limited to)...

Calls to the data feed are made via HTTP GET or HTTP POST requests. There are only a few required parameters when making a call.

Most other parameters are optional and they will alter the way data is returned to you and how your request is processed. You can also pass in your own values that you need carried through. Any parameter that the system doesn't recognize will be returned AS-IS in the status block. This can be handy in situations where you are pulling the data in an asyncronus manor and need extra information passed into your callback routine.

When performing a lookup...

When updating data...

When deleting data...

There are some special "get" operations that need no other parameters. You would not use "find" or "update" when using these. Only use the "keycode", "mode" and "get" for these items. These operations are important because many of our elements are data driven and that data changes over time. We normally don't remove attributes or categories but we do often add to the collection.

The returned data can come back in JSON or XML format. In either case the structure of the data is the same. Because it is easier to read, we will be using XML to demonstrate the layout of the result. Here is the data layout. Notice that this is a complex object and some elements have child elements and some elements may be arrays with repeating content.

The easiest way to get the feel of the data is to make several requests using your web browser and ask for the data in XML format. Although JSON is often easier to work with in code, the XML output is often easier for people to read because of the nice markup tags that wrap around each element and the web browser will usually do a nice job of indenting to make it clear which elements are stored within other elements.