Endpoint Playground
Test Crawlora's Search Target products 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/target/search?q=<q>&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Product search query | |
| page | integer | No | One-based page (1-50) | |
| sort | string | No | relevance | Result order |
| store_id | integer | No | Target store id used for pricing | |
| filter_ids | string | No | Comma-separated Target filter option ids |
{
"code": 200,
"data": {
"applied_filter_ids": [
"sample"
],
"count": 24,
"fetched_at": "sample",
"filter_groups": [
{
"display_name": "Deals",
"expanded": true,
"id": "d_deals",
"options": [
{
"display_name": "Clearance",
"id": "5tdv1",
"selected": true,
"url": "d_deals:clearance",
"value": "clearance"
}
],
"type": "checkbox"
}
],
"page": 1,
"page_size": 24,
"products": [
{
"brand": "Starbucks",
"category_id": "x2hqv",
"parent_category_id": "4yi5p",
"parent_tcin": "89169599",
"price": {
"current": 12.79,
"formatted": "$12.79",
"regular": 12.79,
"store_id": 2885,
"unit_formatted": "$1.07/ounce"
},
"primary_image_url": "https://example.com/resource",
"rating": {
"average": 4.51,
"rating_count": 1586,
"review_count": 1076
},
"tcin": "12954151",
"title": "Starbucks Pike Place Roast Medium Ground Coffee - 12oz",
"url": "https://example.com/resource"
}
],
"query": "coffee",
"sort": "relevance",
"source_url": "https://example.com/resource",
"store_id": 2885,
"total": 20939,
"total_pages": 50
},
"msg": "OK"
}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.
Searches Target products and returns normalized products plus every filter group and option available for the current result set. Pass option ids back through filter_ids as a comma-separated list. A zero total with an empty products list is a valid no-results response. The sort enum accepts `relevance`, `featured`, `price-low`, `price-high`, `rating`, `bestselling`, and `newest`.
{
"code": 200,
"data": {
"applied_filter_ids": [
"sample"
],
"count": 24,
"fetched_at": "sample",
"filter_groups": [
{
"display_name": "Deals",
"expanded": true,
"id": "d_deals",
"options": [
{
"display_name": "Clearance",
"id": "5tdv1",
"selected": true,
"url": "d_deals:clearance",
"value": "clearance"
}
],
"type": "checkbox"
}
],
"page": 1,
"page_size": 24,
"products": [
{
"brand": "Starbucks",
"category_id": "x2hqv",
"parent_category_id": "4yi5p",
"parent_tcin": "89169599",
"price": {
"current": 12.79,
"formatted": "$12.79",
"regular": 12.79,
"store_id": 2885,
"unit_formatted": "$1.07/ounce"
},
"primary_image_url": "https://example.com/resource",
"rating": {
"average": 4.51,
"rating_count": 1586,
"review_count": 1076
},
"tcin": "12954151",
"title": "Starbucks Pike Place Roast Medium Ground Coffee - 12oz",
"url": "https://example.com/resource"
}
],
"query": "coffee",
"sort": "relevance",
"source_url": "https://example.com/resource",
"store_id": 2885,
"total": 20939,
"total_pages": 50
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/target/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"