Endpoint Playground
Test Crawlora's Sam's Club Category 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/category?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Sam's Club category id, or a /browse/{slug}/{id} URL | |
| page | integer | No | Result page, 1-based, defaults to 1 |
{
"code": 200,
"data": {
"breadcrumb": [
{
"id": "100001",
"name": "All Departments",
"url": "https://www.samsclub.com/all-departments"
}
],
"category_id": "15660127",
"count": 47,
"fetched_at": "sample",
"has_more": true,
"max_page": 16,
"page": 1,
"products": [
{
"availability": "IN_STOCK",
"brand": "Tide",
"currency_code": "USD",
"current_price": 19.98,
"image_url": "https://example.com/resource",
"item_id": "13610014888",
"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,
"type": "Laundry Detergents",
"unit_price_text": "$0.28/ea",
"url": "https://www.samsclub.com/ip/Tide-Power-PODS-Ultra-OXI-Laundry-Detergent-Pacs-72-ct/13610014888"
}
],
"source_url": "https://example.com/resource",
"title": "Results for \"Savings\"",
"total_count": 687
},
"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 a Sam's Club category or collection page's product grid, with real page-based pagination. id accepts a bare numeric category id (from a nav link's /browse/{id} URL) or a full /browse/{slug}/{id} URL copied from samsclub.com -- only the trailing id is used. Returns normalized products with name, brand, pricing, availability, rating, and image. An id samsclub.com does not recognize returns a genuine zero-result response rather than an error, matching upstream's own behavior.
{
"code": 200,
"data": {
"breadcrumb": [
{
"id": "100001",
"name": "All Departments",
"url": "https://www.samsclub.com/all-departments"
}
],
"category_id": "15660127",
"count": 47,
"fetched_at": "sample",
"has_more": true,
"max_page": 16,
"page": 1,
"products": [
{
"availability": "IN_STOCK",
"brand": "Tide",
"currency_code": "USD",
"current_price": 19.98,
"image_url": "https://example.com/resource",
"item_id": "13610014888",
"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,
"type": "Laundry Detergents",
"unit_price_text": "$0.28/ea",
"url": "https://www.samsclub.com/ip/Tide-Power-PODS-Ultra-OXI-Laundry-Detergent-Pacs-72-ct/13610014888"
}
],
"source_url": "https://example.com/resource",
"title": "Results for \"Savings\"",
"total_count": 687
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/samsclub/category?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"