Image | ![]() |
EAN-13 | 0012569870024 ![]() |
UPC-A | 012569870024 ![]() |
Product Name | Superman IV - The Quest for Peace |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Model | 2211309 |
Price New | 6.42 US Dollars (curriencies) |
Price Used | 1.51 US Dollars (curriencies) |
Rating | PG - Parental Guidance Suggested |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 90 minutes |
Aspect Ratio | 2.35:1 |
Cast | Christopher Reeve, Gene Hackman, Jackie Cooper, Marc McClure |
Director | Sidney J. Furie |
Genre | ACTION,ADVENTURE,FAMILY,SCI-FI |
Run Time | 90 minutes |
Width | 7.75 inches (convert) |
Height | 0.75 inches (convert) |
Length | 5.5 inches (convert) |
Weight | 20 hundredths pounds (convert) |
Binding | Dvd |
Release Year | 1987 |
Format | Special Edition, Closed-captioned, Color, Dolby, NTSC, Subtitled, Widescreen |
Published | 02/10/2019 |
Run Time | 90 minutes |
Features | Shrink-wrapped |
Long Description | Superman does a lot in his newest adventure. Archvillain Lex Luthor, determined to make the world safe for nuclear arms merchants, creates a new being to challenge the Man of Steel: the radiation-charged Nuclear Man. The two super-powered foes clash in an explosive screen extranvaganza that sees Superman save the Statue of Liberty, repulse a volcanic eruption of Mount Etna, rebuild the demolished Great Wall of China and perform many more spetactular feats. |
Similar Items | 0085391132028: Superman III 0012676441629: Superman Returns (Full Screen Edition) 0012569868526: Superman III 0012569868519: Superman II - The Richard Donner Cut 0012569766761: Supergirl 0012569753426: Superman II 0012569723511: Superman Returns 0012569713178: Batman Forever 0012569681446: Lois & Clark The New Adventures of Superman Season 1 0012569101326: Superman - The Movie View 10 more similar items |
Created | 05-22-2010 |
Modified | 03-20-2019 3:19:30am |
MD5 | 7dad91e64ce0711135a9a7f83c71577f |
SHA256 | adccab3a1f73443e5cb045d5d3cbe27e50700f8473ed8dd4da495b807331d429 |
Search Google | by EAN or by Title |
Query Time | 0.0210378 |
Article of interest
With version 3.2 comes a new way to handle product images. This should give you more control over the images you display.
Prior to version 3.2, you simply had to check for the existance of the product>image property. If it existed and was not blank, you could safely display the image.
Starting with version 3.2, you may want to check one more field before you display the product image. Many API users wanted access to the pending images. The only reasonable way to do this was to add a new property named product>hasImage which can be one of four values.
- Unknown (should never actually appear in the API)
- Yes (a production image exists)
- No (there is no image)
- Pending (a pending image exists)
If you are displaying the product images to your users and you DO NOT want to display pending images that have not been checked, you should only display the image if product>hasImage=Yes. If you want to show production and pending images, you can simply check the product>image property if you like. We suggest using product>hasImage as your main check and only display the image if it meets your needs. Here are samples of the JSON structure.
The property product>hasImage will always be regurned even if you specified a list of properties in the "get" string that does not include the image property. The main reason for this is that it is possible to calculate the image path on your side thereby saving the bandwidth of returning the image path.
If you want to calculate the path to the image on your end instead of requesting it from us, you can do this in two ways.
- If product>hasImage=Pending then simply use the path https://eandata.com/image/pending/{13_digit_EAN}.jpg
- If product>hasImage=Yes then it gets a little more tricky. We split the images into subfolders because there are so many of them. To calculate the path start with the 13 digit EAN and split it up like this: https://eandata.com/image/product/{1st_3_digits}/{2nd_3_digits}/{3rd_3_digits}/{13_digit_EAN}.jpg
This should make interacting with product and pending images much easier for you. Look at the example JSON shown above for working exmples of image paths.