Endpoint Playground
Test Crawlora's CVS category taxonomy 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/cvs/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "cat1",
"title": "Health & Medicine",
"path": "health-medicine",
"children": [
{
"id": "cat510006",
"title": "Allergy & Sinus",
"path": "health-medicine/allergy-sinus",
"children": [
{
"id": "cat510010",
"title": "Allergy Medicine",
"path": "health-medicine/allergy-sinus/allergy-medicine"
}
]
}
]
}
]
}
}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 CVS.com's full category/subcategory navigation taxonomy (name and path, nested to whatever depth the upstream carries). Each node's path is directly usable as GET /cvs/category's path parameter.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "cat1",
"title": "Health & Medicine",
"path": "health-medicine",
"children": [
{
"id": "cat510006",
"title": "Allergy & Sinus",
"path": "health-medicine/allergy-sinus",
"children": [
{
"id": "cat510010",
"title": "Allergy Medicine",
"path": "health-medicine/allergy-sinus/allergy-medicine"
}
]
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/cvs/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"