Image | ![]() |
EAN-13 | 0025192360381 ![]() |
UPC-A | 025192360381 ![]() |
Product Name | Lucy |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Model | 35498356 |
Price New | 14.94 US Dollars (curriencies) |
Price Used | 9.84 US Dollars (curriencies) |
Rating | R - Restricted |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 89 minutes |
Aspect Ratio | 2.40:1 |
Cast | Choi Min-sik, Morgan Freeman, Scarlett Johansson |
Director | Luc Besson |
Genre | ACTION,SCI-FI,THRILLER |
Run Time | 180 minutes |
Width | 7.5 inches (convert) |
Height | 5.4 inches (convert) |
Length | 0.7 inches (convert) |
Weight | 52 hundredths pounds (convert) |
Binding | Blu-ray |
Release Year | 2014 |
Format | 4K |
Run Time | 180 minutes |
Long Description | It was supposed to be a simple job. All Lucy had to do was deliver a mysterious briefcase to Mr. Jang. But immediately Lucy is caught up in a nightmarish deal where she is captured and turned into a drug mule for a new and powerful synthetic drug. When the bag she is carrying inside of her stomach leaks, Lucy's body undergoes unimaginable changes that begins to unlock her mind's full potential. With her new-found powers, Lucy turns into a merciless warrior intent on getting back at her captors. She receives invaluable help from Professor Norman, the leading authority on the human mind, and French police captain Pierre Del Rio. |
Similar Items | 0043396496910: The Fifth Element 0043396481459: The Shallows 0043396470422: Salt 0032429300478: Interstellar 0032429271990: Ghost in the Shell 0031398265221: Now You See Me / Now You See Me 2 [4K Ultra HD Blu-ray] 0031398211044: John Wick 0025192360398: Oblivion 0024543305002: Independence Day Resurgence 0024543282853: Independence Day 0024543278252: Martian Extended Edition |
Created | 04-12-2018 12:14:05am |
Modified | 10-02-2021 12:18:25am |
MD5 | 5d352456406fa8c3a54a88eea53af7ee |
SHA256 | 159291581e519141f0a4a294bccb4087c4452c94db702e2b6822333faa4faf4e |
Search Google | by EAN or by Title |
Query Time | 0.0259869 |
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.