# Kohl's Search API (https://www.socialcrawl.dev/platforms/kohls/search) > Returns one page of Kohl's products for a keyword, 12 per page by default, each with product id, name, current and original price, images, colours, rating, and the product page URL. Sort by featured (default), newest, price_low, price_high, rating, or percent_off. filters is a Kohl's dimension string from the live payload (Color:Black, Brand:Nike, Price:Under $10); combine values with commas. A query the origin cannot match still returns a handful of unrelated popular products rather than an empty page. There is no product-detail endpoint on this surface: feed a returned product id into GET /v1/kohls/reviews or GET /v1/kohls/questions. TL;DR: `GET /v1/kohls/search` 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 | | --- | --- | --- | | `query` | yes | Search keyword, for example jeans, tshirt, towels. | | `page` | no | Page number, starting at 1. Prefer the universal cursor parameter. | | `limit` | no | Products per page, 1 to 48. Default 12. Values above 48 are clamped. The origin default of 120 is a half-megabyte facet dump and is not forwarded. | | `sort_by` | no | Result ordering: featured (default), newest, price_low, price_high, rating, or percent_off. (featured \| newest \| price_low \| price_high \| rating \| percent_off) | | `filters` | no | Kohl's dimension filter string. Example: Color:Black. Combine with commas. Dimension ids appear on every search payload under payload.dimensions. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/kohls/search?query=jeans" \ -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