Endpoint Playground
Test Crawlora's Sam's Club Departments 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/departments" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"data": {
"departments": [
{
"id": "1444",
"image_url": "https://example.com/resource",
"name": "Grocery",
"subcategories": [
{
"id": "1444",
"name": "Grocery",
"type": "browse",
"url": "https://www.samsclub.com/browse/1444"
}
],
"type": "browse",
"url": "https://www.samsclub.com/browse/1444"
}
],
"fetched_at": "sample",
"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 Sam's Club's full department/category taxonomy, as shown on its own "All Departments" page: every top-level department with its own subcategory list. Each link's type is "browse" (pairs directly with GET /samsclub/category), "cp" (a content/landing page that does not reliably carry a product grid), or empty (an unrecognized link shape).
{
"code": 200,
"data": {
"departments": [
{
"id": "1444",
"image_url": "https://example.com/resource",
"name": "Grocery",
"subcategories": [
{
"id": "1444",
"name": "Grocery",
"type": "browse",
"url": "https://www.samsclub.com/browse/1444"
}
],
"type": "browse",
"url": "https://www.samsclub.com/browse/1444"
}
],
"fetched_at": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/samsclub/departments" \
-H "x-api-key: $CRAWLORA_API_KEY"