Endpoint Playground
Test Crawlora's Kroger related tags 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/kroger/related-tags?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search term to get refinement tags for | |
| location_id | string | No | Kroger store/location id that scopes results |
{
"code": 200,
"msg": "OK",
"data": {
"query": "chips ahoy",
"location_id": "03500917",
"count": 3,
"related_tags": [
{
"tag": "chewy",
"query": "chips ahoy chewy",
"position": 0,
"source": "CURATED"
},
{
"tag": "chunky",
"query": "chips ahoy chunky",
"position": 1,
"source": "CURATED"
},
{
"tag": "mini",
"query": "chips ahoy mini",
"position": 2,
"source": "CURATED"
}
]
}
}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 the search-refinement chips Kroger shows above its own results for a query (e.g. "chips ahoy" returns "chewy", "chunky", "thins"). Each tag carries the full follow-on query it maps to, so results feed straight back into kroger-search.
{
"code": 200,
"msg": "OK",
"data": {
"query": "chips ahoy",
"location_id": "03500917",
"count": 3,
"related_tags": [
{
"tag": "chewy",
"query": "chips ahoy chewy",
"position": 0,
"source": "CURATED"
},
{
"tag": "chunky",
"query": "chips ahoy chunky",
"position": 1,
"source": "CURATED"
},
{
"tag": "mini",
"query": "chips ahoy mini",
"position": 2,
"source": "CURATED"
}
]
}
}curl "https://api.crawlora.net/api/v1/kroger/related-tags?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"