Endpoint Playground
Test Crawlora's Walmart Product API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/walmart/product/5689919121" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| item_id (path) | string | Yes | 5689919121 | Walmart item id (the numeric id in a /ip/{id} URL) |
{
"code": 200,
"msg": "OK",
"data": {
"item_id": "5689919121",
"title": "Apple AirPods Pro 2",
"brand": "Apple",
"canonical_url": "https://www.walmart.com/ip/5689919121",
"price": 169,
"price_text": "$169.00",
"currency": "USD",
"availability": "IN_STOCK",
"seller_name": "Walmart.com",
"rating": 4.6,
"review_count": 17823,
"description": "Wireless earbuds with active noise cancellation.",
"attributes": {
"Brand": "Apple"
}
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a normalized Walmart product: price, availability, brand, images, rating, seller, description, highlights, specifications, and variants. Credential-free public Walmart data, rendered from the product page through proxied browser renderers.
{
"code": 200,
"msg": "OK",
"data": {
"item_id": "5689919121",
"title": "Apple AirPods Pro 2",
"brand": "Apple",
"canonical_url": "https://www.walmart.com/ip/5689919121",
"price": 169,
"price_text": "$169.00",
"currency": "USD",
"availability": "IN_STOCK",
"seller_name": "Walmart.com",
"rating": 4.6,
"review_count": 17823,
"description": "Wireless earbuds with active noise cancellation.",
"attributes": {
"Brand": "Apple"
}
}
}curl "https://api.crawlora.net/api/v1/walmart/product/<item_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"