Walmart
Walmart Seller API
Look up a Walmart marketplace seller as JSON - legal name and storefront display name, Pro Seller badge, seller type, active status, registered business address and contact details, storefront URL, and the seller's rating, review count, star breakdown and recent seller reviews. Costs 1 credit.
POST/api/v1/walmart/seller
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonseller_idstringrequiredThe NUMERIC catalog seller id - the seller_catalog_id field returned by the Product, Offers and Seller Products endpoints, and the number in a /global/seller/ URL. The GUID form of seller_id that appears on search rows is a different identifier and returns 404 here.
Example: 102779719
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
# seller_catalog_id is the numeric id this endpoint needs
product = client.walmart.product("17760865787")
seller = client.walmart.seller(product["data"]["seller_catalog_id"])
print(seller)Response
"seller_id": "102779719",
"seller_guid": "F0A23EDB5CDC4DB28037D8CC139D5C44",
"name": "dongwanshizhiyuandianzishangwuyouxiangongsi",
"display_name": "BotestySound",
"about": null,
"logo_url": null,
"url": "https://www.walmart.com/global/seller/102779719",
"seller_type": "EXTERNAL",
"is_marketplace_seller": true,
"has_pro_seller_badge": true,
"is_active": true,
"is_alcohol_seller": false,
"email": "[email protected]",
"phone": "5555550100",
"rating": 4.326530612244898,
"review_count": 49,
"reviews_with_text_count": 7,
},
"response_time": 3368,
"credits_used": 1,
"credits_remaining": 999
}