Amazon Video Results API

Amazon displays Video Results on the search results page at the top and/or at the bottom of the page.

API Examples

Results for: moose hat

Results for: moose hat

JSON Example

{
  ...
  "video_results": [
    {
      "block_position": "top",
      "video_thumbnail": "https://m.media-amazon.com/images/S/al-na-9d5791cf-3faf/4a36cc34-50a4-42aa-8b26-1da399c2a25e.mp4/r/THUMBNAIL_360P_FRAME_3_CAPTURE_2.JPG",
      "video_src": "https://m.media-amazon.com/images/S/al-na-9d5791cf-3faf/4a36cc34-50a4-42aa-8b26-1da399c2a25e.mp4/productVideoOptimized.mp4",
      "video_link": "https://aax-us-iad.amazon.com/x/c/JCCcz47HKJ4KLpJ70Yhrt7AAAAGWXbckXAEAAAH2AQBvbm9fdHhuX2JpZDQgICBvbm9fdHhuX2ltcDIgICDdpzn6/https://www.amazon.com/dp/B0CCS716K7?pd_rd_i=B0CCS716K7&pf_rd_p=7032aefd-3c59-4a1e-aaf4-8d3a944207a4&pf_rd_r=X3HS7CQEK9D1P9Z05RTC&pd_rd_wg=KPEWO&pd_rd_w=Uebi0&pd_rd_r=77d94ffc-9ce8-4220-ab7c-a099c30bfaa2",
      "products": [
        {
          "position": 1,
          "asin": "B0CCS716K7",
          "sponsored": true,
          "title": "Ciieeo Reindeer Antlers - Adult Deer Antlers Headband, 1Pc Cute Christmas Reindeer Ears Headband",
          "link": "https://aax-us-iad.amazon.com/x/c/JCCcz47HKJ4KLpJ70Yhrt7AAAAGWXbckXAEAAAH2AQBvbm9fdHhuX2JpZDQgICBvbm9fdHhuX2ltcDIgICDdpzn6/https://www.amazon.com/Ciieeo-Reindeer-Antlers-Headband-Christmas/dp/B0CCS716K7/ref=sxin_17_sbv_search_btf?content-id=amzn1.sym.7032aefd-3c59-4a1e-aaf4-8d3a944207a4%3Aamzn1.sym.7032aefd-3c59-4a1e-aaf4-8d3a944207a4&cv_ct_cx=moose+hat&keywords=moose+hat&pd_rd_i=B0CCS716K7&pd_rd_r=77d94ffc-9ce8-4220-ab7c-a099c30bfaa2&pd_rd_w=Uebi0&pd_rd_wg=KPEWO&pf_rd_p=7032aefd-3c59-4a1e-aaf4-8d3a944207a4&pf_rd_r=X3HS7CQEK9D1P9Z05RTC&qid=1745329005&sbo=RZvfv%2F%2FHxDF%2BO5021pAnSA%3D%3D&sr=1-1-5190daf0-67e3-427c-bea6-c72c1df98776",
          "link_clean": "https://www.amazon.com/dp/B0CCS716K7/",
          "thumbnail": "https://m.media-amazon.com/images/I/61DuVooZw8L._AC_UL640_QL65_.jpg",
          "rating": 3.8,
          "reviews": 24,
          "price": "$12.40",
          "extracted_price": 12.4,
          "old_price": "$13.99",
          "extracted_old_price": 13.99,
          "offers": [
            "5% off promotion available"
          ],
          "prime": true,
          "delivery": [
            "FREE delivery Sun, Apr 27 on $35 of items shipped by Amazon",
            "Or fastest delivery Tomorrow, Apr 23"
          ]
        }
      ]
    }
  ],
  ...
}

JSON structure overview

{
  ...
  "video_results": [
    {
      "block_position": "String - Position of the block in the page",
      "video_thumbnail": "String - URL of the video thumbnail image",
      "video_src": "String - URL of the video source",
      "video_link": "String - Link to the item detail page",
      "products": [
        {
          // The same structure as `organic_results`.
          // For more information visit https://serpapi.com/amazon-organic-results#api-examples-json-structure-overview
        }
      ]
    }
  ],
  ...
}