# Find a Walmart Seller from a Product URL

**Use case:** 

Resolve a real Walmart marketplace product to its seller profile, rating, contact details, and featured catalog.

## Input

```json
{
  "sellerUrls": [
    {
      "url": "https://www.walmart.com/seller/152"
    }
  ],
  "sellerIds": [],
  "productUrls": [
    {
      "url": "https://www.walmart.com/ip/16432270025"
    }
  ],
  "maxItems": 1,
  "maxProductsPerSeller": 6,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "catalogSellerId": {
    "label": "Catalog seller ID",
    "format": "string"
  },
  "sellerName": {
    "label": "Registered seller name",
    "format": "string"
  },
  "sellerDisplayName": {
    "label": "Display name",
    "format": "string"
  },
  "deactivationStatus": {
    "label": "Account status",
    "format": "string"
  },
  "averageRating": {
    "label": "Seller rating",
    "format": "number"
  },
  "totalReviewCount": {
    "label": "Total ratings and reviews",
    "format": "integer"
  },
  "email": {
    "label": "Public email",
    "format": "string"
  },
  "phone": {
    "label": "Public phone",
    "format": "string"
  },
  "featuredProductCount": {
    "label": "Featured products",
    "format": "integer"
  },
  "sellerUrl": {
    "label": "Seller URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Walmart Sellers Scraper](https://apify.com/automation-lab/walmart-seller-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/walmart-seller-scraper) to learn more, explore other use cases, and run it yourself.