Disable All Advertising
Image
EAN-130841887021876   EAN-13 barcode 0841887021876
UPC-A841887021876   UPC-A barcode 841887021876
Product NameFabulous Frogs
CategoryElectronics / Photography: A/V Media: Movie / TV
Amazon.comA Buy on Amazon ~ B00K6K9G86
Model29086639
Price New13.07 US Dollars    (curriencies)
Price Used6.54 US Dollars    (curriencies)
RatingPG - Parental Guidance Suggested
IMDbIMDb Link
Run Time54 minutes
Aspect Ratio1.78:1
CastDavid Attenborough
DirectorSally Thomson
GenreDOCUMENTARY,FAMILY
Run Time60 minutes
Width5.25 inches    (convert)
Height0.3 inches    (convert)
Length6.5 inches    (convert)
Weight15 hundredths pounds    (convert)
BindingBlu-ray
Release Year2014
FormatMultiple Formats, Blu-ray, Widescreen
Published09/02/2014
Run Time60 minutes
FeaturesFactory sealed DVD
Long DescriptionFrom PBS - Sir David Attenborough takes us on a journey through the weird and wonderful world of frogs, shedding new light on these charismatic, colorful and frequently bizarre little animals through first-hand stories, the latest...
Similar Items0883929620098: Blue Planet II
0883929573677: Planet Earth II (4K) [Blu-ray]
0883929119141: Planet Earth
0883929069613: Nature's Most Amazing Events
0841887036511: NATURE: Sex, Lies and Butterflies Blu-ray
0841887030465: NATURE: Super Hummingbirds Blu-ray
0841887022880: Nature: Hummingbirds [Blu-ray]
0826663166774: IMAX Humpback Whales
0794051413727: Galapagos
0033937038600: Water Life (Blu-Ray/ 3-Disc): Planet Water / The Big Blue / Water's Journey
0018713609151: North America
Created10-16-2018 12:02:33am
Modified07-02-2023 12:09:10am
MD5b5d48b29e7c735b14886ca3e4d78c59b
SHA2565c668a78d2825f654de8cd59da7d83d5257cda8b8456340f064b79e11c84f36e
Search Googleby EAN or by Title
Query Time0.0246911

An article of interest

Making use of the tools we offer

Data Feed API - Extra

The extra items are numerically indexed and provide extra text to go along with numeric values such as weights or distances or even currencies. The attributes that use these extra indexes are all numeric and take two fields. You can send the data in a single field as long as you use the same short or long text that we keep in our database.

Although the data feed API can deliver information as JSON or XML, we are using XML here because it is easier to read.

<attribute>
   <extra_group>Distance</extra_group>
   <field_name>depth</field_name>
   <extra>
      <id>501</id>
      <extra_short>in</extra_short>
      <extra_long>inches</extra_long>
      <seq>10</seq>
   </extra>
   <extra>
      <id>503</id>
      <extra_short>ft</extra_short>
      <extra_long>feet</extra_long>
      <seq>20</seq>
   </extra>
   <extra>
      <id>505</id>
      <extra_short>yrd</extra_short>
      <extra_long>yards</extra_long>
      <seq>30</seq>
   </extra>
</attribute>

Looking at this example, you can see that the EXTRA portion is an array of values each with their own properties. Here is what each section means:

This extra information is normally used in a drop down box next to the numeric data field that we want to enhance. Some examples might be:

You see we can display the long or short version of the extra code by using the ID index.

Fields that make use of this extra information require it when pushing data back to us in the feed. You can either send the data in two fields (value and extra_id) or in a single field (value) as long as the text following the numeric portion matches the long or short version of the extra data we store for the field.

For example, if you wanted to update a field that represented distance with the value "100 yards", you could either send that data just like that in the value field value=100+yards or in two seperate fields value=100&extra_id=505 and you would get the same results. If you send an invalid extra_id or text after the number that doesn't match our accepted list, your update would be rejected.