# Walmart Product Lookup API: UPC and Variants

**Use case:** 

Look up any Walmart item and get upc, manufacturerNumber, category path, variantCount and the full ratingBreakdown as JSON. Both product ids returned.

## Input

```json
{
  "search_mode": "product",
  "query": "laptop",
  "item_id": "34X621REEQZQ",
  "max_results": 100
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "upc": {
    "label": "UPC",
    "format": "string"
  },
  "manufacturerNumber": {
    "label": "Manufacturer number",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "variantCount": {
    "label": "Variant count",
    "format": "integer"
  },
  "sellerName": {
    "label": "Seller name",
    "format": "string"
  },
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "usItemId": {
    "label": "US item 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.