# Export Walmart Product Search Results to CSV

**Use case:** 

Export Walmart product search results with titles, prices, ratings, reviews, sellers, availability, images, sponsored flags, and URLs for retail research.

## Input

```json
{
  "searchQueries": [
    "lego sets"
  ],
  "searchUrls": [],
  "maxResults": 25,
  "pageLimit": 1,
  "sort": "best_match",
  "includeSponsored": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "wasPrice": {
    "label": "Was price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "isSponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "usItemId": {
    "label": "US item ID",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "fulfillment": {
    "label": "Fulfillment",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Walmart Products Scraper for Prices & Availability](https://apify.com/fetch_cat/walmart-products-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/walmart-products-scraper) to learn more, explore other use cases, and run it yourself.