Endpoint Playground
Test Crawlora's Sam's Club Content Page 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/content/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Numeric Sam's Club content page id, from a /cp/{slug}/{id} URL |
{
"code": 200,
"data": {
"breadcrumb": [
{
"id": "100001",
"name": "All Departments",
"url": "https://www.samsclub.com/all-departments"
}
],
"category_links": [
{
"id": "1444",
"name": "Grocery",
"type": "browse",
"url": "https://www.samsclub.com/browse/1444"
}
],
"fetched_at": "sample",
"id": "16050279",
"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",
"title": "Savings Center"
},
"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 curated content/landing page (e.g. a seasonal savings hub or a "New Arrivals" page) -- distinct data from GET /samsclub/category's flat, paginated product grid. id accepts a bare numeric content page id (from a nav link's /cp/{id} URL) or a full /cp/{slug}/{id} URL copied from samsclub.com -- only the trailing id is used. Returns a title, breadcrumb, named curated product shelves, and a category-navigation tile grid. There is no pagination -- a content page's shelves are a fixed, hand-curated set. An id samsclub.com does not recognize returns a 404, unlike GET /samsclub/category's zero-result response for the same situation.
{
"code": 200,
"data": {
"breadcrumb": [
{
"id": "100001",
"name": "All Departments",
"url": "https://www.samsclub.com/all-departments"
}
],
"category_links": [
{
"id": "1444",
"name": "Grocery",
"type": "browse",
"url": "https://www.samsclub.com/browse/1444"
}
],
"fetched_at": "sample",
"id": "16050279",
"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",
"title": "Savings Center"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/samsclub/content/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"