Endpoint Playground
Test Crawlora's CVS OTC product detail 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/product/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | CVS product page URL slug, e.g. \ |
{
"code": 200,
"msg": "OK",
"data": {
"id": "945948",
"title": "Safe Home Premium Radon Test Kit",
"description": "Safe Home Premium Radon Test Kit",
"brand": "Safe Home",
"category": "Household > Home & Kitchen > Kitchen Accessories",
"currency": "USD",
"price": 14.99,
"availability": "InStock",
"images": [
"https://www.cvs.com/bizcontent/merchandising/productimages/high_res/868816000016.jpg"
],
"rating": 5,
"review_count": 1,
"url": "https://www.cvs.com/shop/safe-home-premium-radon-test-kit-prodid-945948",
"source_url": "https://www.cvs.com/shop/safe-home-premium-radon-test-kit-prodid-945948",
"fetched_at": "2026-09-02T00:00:00Z"
}
}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 CVS.com OTC (over-the-counter) retail product's detail: name, description, brand, category, price, currency, online availability, image gallery, and aggregate rating. Covers the non-prescription retail catalog only -- this does not cover prescription items, pharmacy ordering, or any patient-specific data. slug is the segment of a product page URL after "/shop/", e.g. "safe-home-premium-radon-test-kit-prodid-945948"; a full https://www.cvs.com/shop/... URL is also accepted. CVS.com is only available from US/US-territory egress; a request from an unsupported region returns an upstream error rather than an empty result.
{
"code": 200,
"msg": "OK",
"data": {
"id": "945948",
"title": "Safe Home Premium Radon Test Kit",
"description": "Safe Home Premium Radon Test Kit",
"brand": "Safe Home",
"category": "Household > Home & Kitchen > Kitchen Accessories",
"currency": "USD",
"price": 14.99,
"availability": "InStock",
"images": [
"https://www.cvs.com/bizcontent/merchandising/productimages/high_res/868816000016.jpg"
],
"rating": 5,
"review_count": 1,
"url": "https://www.cvs.com/shop/safe-home-premium-radon-test-kit-prodid-945948",
"source_url": "https://www.cvs.com/shop/safe-home-premium-radon-test-kit-prodid-945948",
"fetched_at": "2026-09-02T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/cvs/product/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"