Endpoint Playground
Test Crawlora's Sam's Club Product Detail 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/samsclub/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Numeric Sam's Club product id, from a product page's /ip/{slug}/{id} URL |
{
"code": 200,
"data": {
"availability": "IN_STOCK",
"brand": "Tide",
"category": [
"All Departments",
"Household Essentials",
"Laundry Supplies",
"Laundry Detergent"
],
"currency_code": "USD",
"current_price": 19.98,
"description": "sample",
"highlights": [
"sample"
],
"images": [
"sample"
],
"item_id": "13610014888",
"item_number": "990471947",
"name": "Tide Power PODS + Ultra OXI Laundry Detergent Pacs, 72 ct.",
"on_sale": true,
"rating": 4.8,
"regular_price": 24.98,
"review_count": 4122,
"savings_amount": 5,
"unit_price": 0.28,
"unit_price_text": "$0.28/ea",
"upc": "030772073438",
"url": "https://www.samsclub.com/ip/13610014888"
},
"msg": "OK"
}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 one Sam's Club product's full detail: name, brand, description, category breadcrumb, pricing, availability, images, aggregate rating and review count, and the club's own item number. id is the numeric product id from a Sam's Club product page's /ip/ URL.
{
"code": 200,
"data": {
"availability": "IN_STOCK",
"brand": "Tide",
"category": [
"All Departments",
"Household Essentials",
"Laundry Supplies",
"Laundry Detergent"
],
"currency_code": "USD",
"current_price": 19.98,
"description": "sample",
"highlights": [
"sample"
],
"images": [
"sample"
],
"item_id": "13610014888",
"item_number": "990471947",
"name": "Tide Power PODS + Ultra OXI Laundry Detergent Pacs, 72 ct.",
"on_sale": true,
"rating": 4.8,
"regular_price": 24.98,
"review_count": 4122,
"savings_amount": 5,
"unit_price": 0.28,
"unit_price_text": "$0.28/ea",
"upc": "030772073438",
"url": "https://www.samsclub.com/ip/13610014888"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/samsclub/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"