Get Seller Products
curl --request GET \
--url https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products"
headers = {"X-API-Key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch('https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_bodySellers
Get Seller Products
A Walmart marketplace seller’s catalogue, scoped by a required search term.
GET
/
v1
/
walmart
/
sellers
/
{seller_id}
/
products
Get Seller Products
curl --request GET \
--url https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products"
headers = {"X-API-Key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch('https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/walmart/sellers/{seller_id}/products")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_bodyList a marketplace seller’s inventory. Returns the same
SearchResponse shape
as /search.
Credits: 5
query is required. The seller storefront renders its grid client-side,
so this endpoint goes through Walmart search with a retailer_id facet — and
that facet returns zero results with no query term. Scope the catalogue with
a term (camera, laptop, a brand …) and repeat across terms to enumerate a
seller.No surveyed competitor offers Walmart seller inventory at all — the seller
endpoints elsewhere are profile metadata only.
Authorization
string
required
Your ScrapeBadger API key.
Path Parameters
string
required
Numeric catalog seller id, e.g.
6907 (Adorama). This is
seller.catalog_seller_id on a
product — not the 32-char
hex seller.seller_id.Query Parameters
string
required
Search term scoping the seller’s catalogue, e.g.
camera.integer
default:"1"
Result page,
1–10.string
Result ordering. One of
best_match, best_seller, price_low,
price_high, rating_high, new.Response
Identical to/search:
query, url, page, total_results_reported, max_page (10),
result_count, has_more_pages, sort, title, and items[] of
SearchItem. Every item carries the seller’s seller_id / seller_name.
Example
curl "https://scrapebadger.com/v1/walmart/sellers/6907/products?query=camera&sort=price_high" \
-H "X-API-Key: YOUR_API_KEY"
const res = await fetch(
"https://scrapebadger.com/v1/walmart/sellers/6907/products?" +
new URLSearchParams({ query: "camera", sort: "price_high" }),
{ headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const data = await res.json();
import requests
res = requests.get(
"https://scrapebadger.com/v1/walmart/sellers/6907/products",
headers={"X-API-Key": "YOUR_API_KEY"},
params={"query": "camera", "sort": "price_high"},
)
data = res.json()
Response
{
"query": "camera",
"url": "https://www.walmart.com/search?q=camera&facet=retailer_id%3A6907",
"page": 1,
"total_results_reported": 658,
"max_page": 10,
"result_count": 42,
"has_more_pages": true,
"sort": "price_high",
"title": "Results for \"camera\"",
"items": [
{
"us_item_id": "3988246008",
"name": "Sony Alpha a7R V 61.0MP Full Frame Mirrorless Digital Camera Body - Bundle with 128GB SDXC Card, Backpack, Extra Battery",
"brand": "Sony",
"url": "https://www.walmart.com/ip/Sony-Alpha-a7R-V.../3988246008",
"price": 3498.0,
"price_string": "$3,498.00",
"rating": 5.0,
"review_count": 5,
"in_stock": true,
"availability_status": "IN_STOCK",
"fulfillment_type": "MARKETPLACE",
"seller_id": "1F94731C2621441B90812CB343D18B39",
"seller_name": "Adorama",
"is_sponsored": false,
"position": 1
}
]
}
Same page ceiling as search: results stop after page 10, and consecutive
pages overlap by roughly 20% — deduplicate on
us_item_id. To enumerate a
large seller, run several query terms rather than paging one term deeper.Errors
| Status | Meaning |
|---|---|
404 | Seller does not exist — check you passed the numeric catalog_seller_id. |
422 | Anti-bot challenge — not billed. Retry; it succeeds. |

