Image | ![]() |
EAN-13 | 0031398229513 ![]() |
UPC-A | 031398229513 ![]() |
Product Name | Casese Quien Pueda |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Model | 35225448 |
Price New | 5.00 US Dollars (curriencies) |
Price Used | 7.79 US Dollars (curriencies) |
Run Time | 107 minutes |
Cast | Luis Gerardo Méndez, Martha Higareda, Miri Higareda, and Michel Brown, with Juan Pablo Medina |
Genre | Comedies |
Run Time | 107 minutes |
Width | 5.4 inches (convert) |
Height | 0.55 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 20 hundredths pounds (convert) |
Binding | Dvd |
Format | Multiple Formats, Closed-captioned, Color, NTSC, Subtitled, Widescreen |
Published | 10/06/2015 |
Run Time | 107 minutes |
Features | Shrink-wrapped |
Long Description | The best-laid love plans go hilariously awry in this sparkling romantic-comedy hit. After glamorous city girl Ana (Martha Higareda) discovers her fiance has cheated on her, she drowns her sorrows, passes out, and awakes in a faraway tropical jungle--in a hut with a hunky stranger! Meanwhile, Ana's sister Daniela (Miriam Higareda) starts to suspect her BFF may be more than just a friend in this laugh-filled film that proves love can lead you to wildly unexpected places. |
Similar Items | 7506013117979: Amarte Duele 0616892616221: Witnesses 0031398247876: Compadres 0031398244172: Busco novio para mi mujer 0031398234678: Ladrones 0031398225256: A la mala 0031398105947: Divina Confusion 0012236216780: Fuera Del Cielo 0012236205739: Amar te duele 0000799438121: 7 Dias |
Created | 04-12-2018 1:35:50am |
Modified | 05-11-2019 11:27:34pm |
MD5 | c25360758af9083025d8d425ba22f83d |
SHA256 | 0ad09ba7f31cfecf99f136e821d4b7ea92cbc4b58ad1540f9f901c44bcf2530e |
Search Google | by EAN or by Title |
Query Time | 0.0316720 |
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.