# 沃尔玛商品数据API：搜索、详情与卖家

**Use case:** 

关键词搜索返回商品价格、原价、评分、卖家与商品ID；详情模式含UPC与分类路径；卖家模式列出全部报价与配送信息。输出JSON，无需代理与验证码。

## Input

```json
{
  "search_mode": "search",
  "query": "laptop",
  "max_results": 50
}
```

## Output

```json
{
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "wasPrice": {
    "label": "Was price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "sellerName": {
    "label": "Seller name",
    "format": "string"
  },
  "sponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Walmart API | Product, Seller, Price and Review Data](https://apify.com/johnvc/walmart-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/walmart-api) to learn more, explore other use cases, and run it yourself.