Disable All Advertising
Image
EAN-130043396358959   EAN-13 barcode 0043396358959
UPC-A043396358959   UPC-A barcode 043396358959
Product NameResident Evil: Extinction
CategoryElectronics / Photography: A/V Media: Movie / TV
Web Link
Amazon.comA Buy on Amazon ~ B0043KVFX4
Price New23.99 US Dollars    (curriencies)
Price Used7.97 US Dollars    (curriencies)
RatingR - Restricted
IMDbIMDb Link
TrailerWatch The Trailer
Run Time94 minutes
CastMilla Jovovich, Oded Fehr, Ali Larter, Iain Glen
DirectorRussell Mulcahy
GenreACTION,HORROR,SCI-FI
Run Time94 minutes
BindingBlu-ray
Release Year2007
FormatLimited Collector's Edition, Blu-ray, Widescreen, Subtitled, Color
Published04/02/2018
Run Time94 minutes
Long DescriptionYears after the Raccoon City disaster, Alice is on her own; aware that she has become a liability and could endanger those around her, she is struggling to survive and bring down the Umbrella Corporation led by the sinister Albert Wesker and head researcher Dr. Isaacs. Meanwhile, traveling through the Nevada Desert and the ruins of Las Vegas, Carlos Olivera, L.J., and new survivors K-Mart, Claire Redfield, and Nurse Betty must fight to survive extinction against hordes of zombies, killer crows and the most terrifying creatures created as a result of the deadly T-Virus that has killed millions.
Similar Items0043396495593: Resident Evil Apocalypse
0043396488632: Resident Evil: The Final Chapter
0043396409668: Resident Evil: Retribution 3d (Two-Disc Combo: Blu-Ray + Ultraviolet Digital Copy)
0043396398023: Underworld Awakening
0043396366008: Resident Evil: Afterlife (Blu-Ray/ 3-D)
0043396292109: Underworld Rise of the Lycans
0043396153813: Underworld Evolution
0043396150195: Resident Evil Apocalypse
Created09-23-2017 3:05:59pm
Modified04-02-2018 5:01:44am
MD5c67c43daaa28b5aada45b85a5ddd186a
SHA25613f45f6c7b077e3a677586365d776e392618d7e2e475443290a71389f304ec64
Search Googleby EAN or by Title
Query Time0.0248160

An article of interest

Making use of the tools we offer

Data Feed API v3 - Handling Product Images

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.

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. 

  1. If product>hasImage=Pending then simply use the path https://eandata.com/image/pending/{13_digit_EAN}.jpg
  2. 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.