Sam's Club API endpoint
Use Crawlora's Sam's Club Product Detail API to extract supported public Sam's Club data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/samsclub/product/{id}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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| id (path) | string | Yes | Numeric Sam's Club product id, from a product page's /ip/{slug}/{id} URL | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/samsclub/product/example" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `item_number` is Sam's Club's own club/warehouse item number, distinct from `id` (the catalog product id used in the URL). - `regular_price` and `current_price` are both the same value when the product is not on sale, and diverge when `on_sale` is `true` (`current_price` is what a shopper actually pays). - `unit_price`/`unit_price_text` is the per-unit price display (e.g. `$0.28/ea`) when the upstream provides it. - Pricing, rating, and review data reflect what is visible to a guest (unauthenticated, non-member) shopper; no membership sign-in is required or used. - `category` is the product's breadcrumb path, ordered from the top-level department down to the most specific category. - `images` is the product's full image gallery as absolute URLs. - `rating` and `review_count` are the product's aggregate review statistics; both are `0` when the product has no reviews yet. - An unrecognized `id` returns `404`. An id containing invalid characters returns `400` before any upstream request is made. ```json {"code":200,"msg":"OK","data":{"item_id":"13610014888","item_number":"990471947","name":"Tide Power PODS + Ultra OXI Laundry Detergent Pacs, 72 ct.","brand":"Tide","description":"<p>There are two things that let you know your clothes are clean...</p>","highlights":["Brand: Tide","Product Net Content UOM: Each"],"category":["All Departments","Household Essentials","Laundry Supplies","Laundry Detergent"],"upc":"030772073438","currency_code":"USD","regular_price":24.98,"current_price":19.98,"on_sale":true,"unit_price":0.28,"unit_price_text":"$0.28/ea","savings_amount":5,"availability":"IN_STOCK","images":["https://i5.samsclubimages.com/asr/638eb209-14c5-4a77-8222-cd5c31bd6852.c96234e029bf7888112ad2b74501dee8.jpeg"],"rating":4.8156,"review_count":4122,"url":"https://www.samsclub.com/ip/13610014888"}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
Request schema
No body schema
Response schema
#/definitions/samsclub.productResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | samsclub.Product | No | ||||
| data.availability | string | No | IN_STOCK | |||
| data.brand | string | No | Tide | |||
| data.category | array | No | All Departments,Household Essentials,Laundry Supplies,Laundry Detergent | |||
| data.currency_code | string | No | USD | |||
| data.current_price | number | No | 19.98 | |||
| data.description | string | No | ||||
| data.highlights | array | No | ||||
| data.images | array | No | ||||
| data.item_id | string | No | 13610014888 | |||
| data.item_number | string | No | 990471947 | |||
| data.name | string | No | Tide Power PODS + Ultra OXI Laundry Detergent Pacs, 72 ct. | |||
| data.on_sale | boolean | No | true | |||
| data.rating | number | No | 4.8 | |||
| data.regular_price | number | No | 24.98 | |||
| data.review_count | integer | No | 4122 | |||
| data.savings_amount | number | No | 5 | |||
| data.unit_price | number | No | 0.28 | |||
| data.unit_price_text | string | No | $0.28/ea | |||
| data.upc | string | No | 030772073438 | |||
| data.url | string | No | https://www.samsclub.com/ip/13610014888 | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/samsclub/product/example" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms