# Kohl's Questions API (https://www.socialcrawl.dev/platforms/kohls/questions) > Returns buyer questions for a Kohl's product, 10 per page by default, each with the question text, asker nickname, submission date, answer count, and any attached answers. The question total is exact. A product id the origin does not know returns an empty list and is not billed. TL;DR: `GET /v1/kohls/questions` 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 | Questions per page, 1 to 50. Default 10. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/kohls/questions" \ -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