Walmart

Run Walmart PDP Scraper

This endpoint allows you to scrape a Walmart Product Detail Page (PDP).

Note

Use the Sync Scraper API Server (https://sync.scraper.mrscraper.com) host when calling this endpoint.

POST
/api/walmart/pdp/sync
x-api-token<token>

In: header

urlstring

Walmart product URL

zipCode?string

Zip code used to determine local product availability

storeId?string

Walmart store ID for localized inventory

Response Body

application/json

curl -X POST "https://api.app.mrscraper.com/api/walmart/pdp/sync" \  -H "Content-Type: application/json" \  -d '{    "url": "https://www.walmart.com/ip/HP-14-Laptop-Student-Business-Computer-Intel-N150-Processor-1-Year-Microsoft-365-32GB-RAM-128GB-UFS-256GB-Micro-SD-Card-Copilot-AI-Windows-11-Pro/17581855155"  }'
{
  "success": true,
  "message": "Succesfully scraped",
  "data": {
    "mrp": "$1,599.00",
    "price": "$459.99",
    "rating": "5 stars out of 87 reviews",
    "seller": "82days Tech",
    "reviews": "87 reviews",
    "location": "1885 STATE ROUTE 57 STE 100, Hackettstown, NJ 07840",
    "statusText": "In stock",
    "deliverDays": "Arrives by in 7 days",
    "productName": "HP 14\" Laptop Student Business Computer, Intel N150 Processor, 1-Year Microsoft 365, 32GB RAM, 128GB UFS, 256GB Micro SD Card, Copilot AI, Windows 11 Pro",
    "storeDetails": {
      "storeName": "82days Tech",
      "storeType": "MARKETPLACE",
      "storeRating": "3.8 stars out of 5, based on 81 seller reviews"
    }
  }
}