Endpoint Playground
Test Crawlora's Sam's Club Related Items 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>/related" \
-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": {
"fetched_at": "sample",
"item_id": "13610014888",
"shelves": [
{
"items": [
{
"availability": "IN_STOCK",
"currency_code": "USD",
"image_url": "https://example.com/resource",
"item_id": "13576901230",
"name": "Tide PODS Laundry Detergent Pacs, Spring Meadow, 156 ct.",
"price": 29.98,
"rating": 4.8184,
"review_count": 13701,
"url": "https://www.samsclub.com/ip/Tide-PODS-Laundry-Detergent-Pacs-Spring-Meadow-156-ct/13576901230"
}
],
"title": "Members also considered"
}
],
"source_url": "https://example.com/resource"
},
"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 the related-item carousels shown on a Sam's Club product page, each a named shelf (e.g. "Members also considered", "Items you may like") of normalized products with pricing, rating, and image. id is the numeric product id from a Sam's Club product page's /ip/ URL. This upstream source does not distinguish an unrecognized id from a known one -- an unrecognized id still returns generic fallback shelves rather than an error.
{
"code": 200,
"data": {
"fetched_at": "sample",
"item_id": "13610014888",
"shelves": [
{
"items": [
{
"availability": "IN_STOCK",
"currency_code": "USD",
"image_url": "https://example.com/resource",
"item_id": "13576901230",
"name": "Tide PODS Laundry Detergent Pacs, Spring Meadow, 156 ct.",
"price": 29.98,
"rating": 4.8184,
"review_count": 13701,
"url": "https://www.samsclub.com/ip/Tide-PODS-Laundry-Detergent-Pacs-Spring-Meadow-156-ct/13576901230"
}
],
"title": "Members also considered"
}
],
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/samsclub/product/<id>/related" \
-H "x-api-key: $CRAWLORA_API_KEY"