Scrapingdog

Walmart Search Scraper

Scrape Walmart search result pages by passing any Walmart search URL. Returns product titles, prices, ratings, review counts, availability, and seller info. Each successful request costs 5 API credits.

Endpoint: https://api.scrapingdog.com/walmart/search

API Parameters

🔑

Scrapingdog Parameters

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String
🔍

Search

  • url Required
    The full Walmart search URL to scrape. You can build this URL directly from the Walmart website (e.g., https://www.walmart.com/search?q=football).

    Type: String

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/walmart/search?api_key=APIKEY&url=https://www.walmart.com/search?q=football"
API Response
{
  "search_results": [
    {
      "title": "Results for 'football'",
      "totalItemCount": 4188,
      "item": [
        {
          "title": "Wilson NCAA Composite Football, Intermediate Size",
          "id": "6B3A2D1E4F9C8B7A",
          "usItemId": "173264892",
          "type": "REGULAR",
          "thumbnail": "https://i5.walmartimages.com/seo/Wilson-NCAA-Football_1.jpg",
          "canonicalUrl": "/ip/Wilson-NCAA-Composite-Football/173264892",
          "rating": 4.6,
          "review_count": 524,
          "seller_name": "Walmart.com",
          "availability_status": "In stock",
          "current_price": "$11.98",
          "before_price": "",
          "price_range_string": "Options from $11.98 – $47.92",
          "sponsored": true,
          "shipping": "Free pickup today"
        },
        {
          "title": "Franklin Sports Football - Official Size Grip-Rite Football",
          "id": "7C4B3E2D5A8F1C9B",
          "usItemId": "184729301",
          "type": "REGULAR",
          "thumbnail": "https://i5.walmartimages.com/seo/Franklin-Sports-Football_1.jpg",
          "canonicalUrl": "/ip/Franklin-Sports-Football/184729301",
          "rating": 4.3,
          "review_count": 287,
          "seller_name": "Walmart.com",
          "availability_status": "In stock",
          "current_price": "$14.97",
          "before_price": "$19.99",
          "price_range_string": "",
          "sponsored": false,
          "shipping": "Free shipping, arrives in 2 days"
        }
      ]
    }
  ]
}