Get Seller Profile
curl --request GET \
--url https://scrapebadger.com/v1/walmart/sellers/{seller_id} \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/walmart/sellers/{seller_id}"
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}', 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}",
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}"
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}")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/walmart/sellers/{seller_id}")
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_body{
"seller": {
"seller_id": "<string>",
"catalog_seller_id": "<string>",
"name": "<string>",
"display_name": "<string>",
"seller_type": "<string>",
"url": "<string>",
"logo_url": "<string>",
"banner_url": "<string>",
"about": "<string>",
"email": "<string>",
"phone": "<string>",
"address1": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>",
"country_code": "<string>",
"rating": 123,
"review_count": 123,
"has_seller_badge": true,
"is_pro_seller": true,
"is_alcohol_seller": true,
"deactivation_status": "<string>",
"tax_policy": "<string>"
},
"featured_items": [
{}
]
}Sellers
Get Seller Profile
A Walmart marketplace seller’s profile — contact details, address, rating and policies.
GET
/
v1
/
walmart
/
sellers
/
{seller_id}
Get Seller Profile
curl --request GET \
--url https://scrapebadger.com/v1/walmart/sellers/{seller_id} \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://scrapebadger.com/v1/walmart/sellers/{seller_id}"
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}', 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}",
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}"
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}")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/walmart/sellers/{seller_id}")
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_body{
"seller": {
"seller_id": "<string>",
"catalog_seller_id": "<string>",
"name": "<string>",
"display_name": "<string>",
"seller_type": "<string>",
"url": "<string>",
"logo_url": "<string>",
"banner_url": "<string>",
"about": "<string>",
"email": "<string>",
"phone": "<string>",
"address1": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>",
"country_code": "<string>",
"rating": 123,
"review_count": 123,
"has_seller_badge": true,
"is_pro_seller": true,
"is_alcohol_seller": true,
"deactivation_status": "<string>",
"tax_policy": "<string>"
},
"featured_items": [
{}
]
}Fetch a Walmart marketplace seller’s profile: display name, business contact
details and address, rating, badges and policies.
Credits: 5
This endpoint returns no product list. Walmart renders storefront grids
client-side (
searchResult comes back as {isEmptySearchResult: true} for
every seller tested), and adding ?page= makes Walmart’s own server-side
render throw. Use
/sellers/{seller_id}/products
for the catalogue.Authorization
string
required
Your ScrapeBadger API key.
Path Parameters
string
required
Numeric catalog seller id, e.g.
6907. This is seller.catalog_seller_id
on a product — not the
32-char hex seller.seller_id, which 404s as a storefront URL.Response
object
The seller profile.
Show Seller
Show Seller
SearchItem[]
Any items Walmart server-rendered on the storefront. Usually empty — the grid
is client-side.
Example
curl "https://scrapebadger.com/v1/walmart/sellers/101040442" \
-H "X-API-Key: YOUR_API_KEY"
const res = await fetch(
"https://scrapebadger.com/v1/walmart/sellers/101040442",
{ headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const { seller } = await res.json();
import requests
res = requests.get(
"https://scrapebadger.com/v1/walmart/sellers/101040442",
headers={"X-API-Key": "YOUR_API_KEY"},
)
seller = res.json()["seller"]
Response
{
"seller": {
"seller_id": "8828868EF163431A961A65A6F76FA620",
"catalog_seller_id": "101040442",
"name": "4th Quarter Collectibles",
"display_name": "4th Quarter Collectibles & Toys",
"seller_type": "EXTERNAL",
"url": "https://www.walmart.com/seller/8828868EF163431A961A65A6F76FA620",
"logo_url": null,
"banner_url": null,
"about": "Toys and collectibles store.",
"email": "4thqtrcollectibles@gmail.com",
"phone": "8594468261",
"address1": "Stella Ave",
"address2": "",
"city": "Cincinnati",
"state": "OH",
"postal_code": "45224",
"country": "US",
"country_code": "+1",
"rating": 0.0,
"review_count": 0,
"has_seller_badge": false,
"is_pro_seller": false,
"is_alcohol_seller": false,
"deactivation_status": "ACTIVE",
"tax_policy": null
},
"featured_items": []
}
Errors
| Status | Meaning |
|---|---|
404 | Seller does not exist — most often because a hex seller_id was passed instead of the numeric catalog_seller_id. |
422 | Anti-bot challenge — not billed. Retry; it succeeds. |
⌘I

