Endpoint Playground
Test Crawlora's Get a Target product 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/product?tcin=<tcin>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| tcin | string | Yes | Numeric Target item id (TCIN) | |
| store_id | integer | No | Target store id used for pricing and availability |
{
"code": 200,
"data": {
"fetched_at": "sample",
"product": {
"availability": {
"backup_store": true,
"primary_store": true,
"scheduled_delivery": true,
"shipping": true,
"sold_out": true
},
"brand": "Starbucks",
"breadcrumbs": [
{
"id": "4yi5p",
"name": "Coffee",
"url": "https://example.com/resource"
}
],
"bullets": [
"sample"
],
"category": "Ground Coffee",
"category_id": "x2hqv",
"description": "sample",
"dpci": "231-10-1932",
"images": [
"sample"
],
"item_type": "Coffee",
"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
},
"specifications": [
"sample"
],
"tcin": "12954151",
"title": "Starbucks Pike Place Roast Medium Ground Coffee - 12oz",
"url": "https://example.com/resource"
},
"source_url": "https://example.com/resource",
"store_id": 2885
},
"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.
Returns normalized product details for one Target item, including product content, images, price, rating, category, and availability flags for the selected store.
{
"code": 200,
"data": {
"fetched_at": "sample",
"product": {
"availability": {
"backup_store": true,
"primary_store": true,
"scheduled_delivery": true,
"shipping": true,
"sold_out": true
},
"brand": "Starbucks",
"breadcrumbs": [
{
"id": "4yi5p",
"name": "Coffee",
"url": "https://example.com/resource"
}
],
"bullets": [
"sample"
],
"category": "Ground Coffee",
"category_id": "x2hqv",
"description": "sample",
"dpci": "231-10-1932",
"images": [
"sample"
],
"item_type": "Coffee",
"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
},
"specifications": [
"sample"
],
"tcin": "12954151",
"title": "Starbucks Pike Place Roast Medium Ground Coffee - 12oz",
"url": "https://example.com/resource"
},
"source_url": "https://example.com/resource",
"store_id": 2885
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/target/product?tcin=<tcin>" \
-H "x-api-key: $CRAWLORA_API_KEY"