CVS API endpoint
Use Crawlora's CVS OTC product detail API to extract supported public CVS data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/cvs/product/{slug}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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| slug (path) | string | Yes | CVS product page URL slug, e.g. \ | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/cvs/product/%3Cslug%3E" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `availability` is the short form of the page's schema.org availability (`InStock`, `OutOfStock`, `SoldOut`, ...), reflecting online availability only — not any particular store's shelf stock. - `price` and `currency` come from the page's own offer. - `images` is the product's image gallery. - CVS.com is only available from US/US-territory egress; a request from an unsupported region, or a page CVS blocks, returns a `503` upstream error rather than an empty or wrong result. - An unrecognized `slug` returns a `400` invalid-parameter error before any upstream request is made. Example response: ```json {"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"}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
}Request schema
No body schema
Response schema
#/definitions/cvs.productResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | cvs.Product | No | ||||
| data.availability | string | No | InStock | Availability is the short form of the page's schema.org availability (e.g. "InStock", "OutOfStock", "SoldOut"). This reflects online availability only, not any particular store's shelf stock -- store- level availability is out of scope for this endpoint. | ||
| data.brand | string | No | Safe Home | |||
| data.category | string | No | Household > Home & Kitchen > Kitchen Accessories | |||
| data.currency | string | No | USD | |||
| data.description | string | No | ||||
| data.fetched_at | string | No | ||||
| data.id | string | No | 945948 | |||
| data.images | array | No | ||||
| data.price | number | No | 14.99 | |||
| data.rating | number | No | 5 | |||
| data.review_count | integer | No | 1 | |||
| data.source_url | string | No | ||||
| data.title | string | No | Safe Home Premium Radon Test Kit | |||
| data.url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/cvs/product/%3Cslug%3E" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms