# Kohl's Reviews API (https://www.socialcrawl.dev/platforms/kohls/reviews) > Returns written customer reviews for a Kohl's product, 8 per page by default, each with the full review text, star rating, title, reviewer nickname, submission date, helpful-vote count, and a verified-purchase flag. The review total is exact. Pass the returned cursor back until has_more is false. A product id the origin does not know returns an empty list and is not billed. TL;DR: `GET /v1/kohls/reviews` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `product_id` | no | Kohl's product id, the digits after prd- in a product URL: www.kohls.com/product/prd-1695762/... is product id 1695762. Product ids also come back on every row of GET /v1/kohls/search. | | `url` | no | Kohl's product page URL, for example https://www.kohls.com/product/prd-1695762/gloria-vanderbilt-amanda-tapered-jeans-womens.jsp. The product id is parsed from prd-{id}. | | `page` | no | Page number, starting at 1. Prefer the universal cursor parameter. | | `limit` | no | Reviews per page, 1 to 50. Default 8. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/kohls/reviews" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full Kohl's API: https://www.socialcrawl.dev/platforms/kohls ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing