Endpoint Playground
Test Crawlora's Kohl's Search Suggestions 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/kohls/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Partial search text, e.g. \ |
{
"code": 200,
"msg": "OK",
"data": {
"query": "coff",
"count": 8,
"suggestions": [
"coffee makers",
"keurig coffee makers",
"ninja coffee makers",
"coffee mugs",
"coffee",
"cuisinart coffee makers",
"coffee grinder",
"keurig single serve coffee maker"
],
"source_url": "https://www.kohls.com/typeahead/coff.jsp",
"fetched_at": "2026-08-12T10: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 Kohl's own search-box typeahead result for a partial query: a flat list of suggested search phrases (no product data). A nonsense query returns a genuine, well-formed empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"query": "coff",
"count": 8,
"suggestions": [
"coffee makers",
"keurig coffee makers",
"ninja coffee makers",
"coffee mugs",
"coffee",
"cuisinart coffee makers",
"coffee grinder",
"keurig single serve coffee maker"
],
"source_url": "https://www.kohls.com/typeahead/coff.jsp",
"fetched_at": "2026-08-12T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/kohls/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"