Skip to main content
POST
/
api
/
walmart
/
products
/
search
/walmart/products/search
curl --request POST \
  --url https://api.anysite.io/api/walmart/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 392,
  "timeout": 300,
  "sort": "best_match",
  "min_price": 1,
  "max_price": 1
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@walmart_search_product",
    "title": "<string>",
    "description": "<string>",
    "price": 123,
    "currency": "<string>",
    "list_price": 123,
    "image": "<string>",
    "rating": 123,
    "review_count": 123,
    "category": "<string>",
    "condition": "<string>",
    "is_preowned": true,
    "seller": {
      "@type": "@walmart_search_product_seller",
      "id": "<string>",
      "catalog_id": "<string>",
      "name": "<string>",
      "type": "<string>"
    },
    "fulfillment": {
      "@type": "@walmart_search_product_fulfillment",
      "type": "<string>",
      "methods": [],
      "delivery_date": "<string>"
    },
    "availability_status": "<string>",
    "is_in_stock": true,
    "is_sponsored": false,
    "is_best_seller": false,
    "badges": [],
    "variants": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"coffee maker"

"laptop"

count
integer
required

Max number of results to return

Required range: 1 <= x <= 784
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:best_match

Result sort order

Available options:
best_match,
price_low,
price_high,
best_seller,
new,
rating_high
min_price
number | null

Minimum price filter

Required range: x >= 0
max_price
number | null

Maximum price filter

Required range: x >= 0

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@walmart_search_product
title
string | null
description
string | null
price
number | null
currency
string | null
list_price
number | null
image
string | null
rating
number | null
review_count
integer | null
category
string | null
condition
string | null
is_preowned
boolean | null
seller
WalmartSearchProductSeller · object
fulfillment
WalmartSearchProductFulfillment · object
availability_status
string | null
is_in_stock
boolean | null
is_sponsored
boolean
default:false
is_best_seller
boolean
default:false
badges
string[]
variants
WalmartSearchProductVariant · object[]