Disable All Advertising
Image
EAN-130634991206921   EAN-13 barcode 0634991206921
UPC-A634991206921   UPC-A barcode 634991206921
Product Name411 VM (The Bam Issue)
CategoryElectronics / Photography: A/V Media: Movie / TV
Amazon.comA Buy on Amazon ~ B0002I83UY
Price New7.37 US Dollars    (curriencies)
Price Used2.48 US Dollars    (curriencies)
RatingR - Restricted
IMDbNot on IMDb
Run Time67 minutes
Aspect Ratio1.33:1
CastBam Margera
Run Time67 minutes
Width5.5 inches    (convert)
Height0.75 inches    (convert)
Length7.75 inches    (convert)
Weight25 hundredths pounds    (convert)
BindingDvd
FormatClosed-captioned, Color, PAL
Run Time67 minutes
Long Description411VM presents "The Bam Issue!" Bam Margera has taken over and is featured throughout 411VM’s Issue #61! Features: Station IDs by Bam and his famous friends, Bam’s first-ever Profile, Spot Check at FDR featuring Bam, Road Trip to Germany with Bam and Adio, Hot Wheels (new article), Scott Christensen, Terrell Robinson, and Jon Goeman,, Day In The Life with Jason Dill, Controlled Chaos featuring Chet Childress, Pat Smith, Steve Nesser and Mike Peterson, Quiksilver Bowlriders Contest—Marseille, France, 1st Step Trick Tip - Boardsliding Rails with special guest Jim Gagne
Similar Items9781439147733: Serious As Dog Dirt
0883629933986: Bam's Unholy Union Season 1
0829994141021: Viva La Bands
0718122575381: Minghags The Movie
0673041900297: Cky
0673041600296: Elementality, Vol. 1
0634991159524: Haggard
0634991141925: CKY4 The Latest & Greatest
0014381332421: Steve-O Out on Bail
Created05-22-2010
Modified05-24-2018 6:16:03am
MD5078c34318182df4c4341821da37f271a
SHA25628a44dec92e22b323038b10b3970b738b8fcdb63a24474af0095b4eca90bed15
Search Googleby EAN or by Title
Query Time0.0414100

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.