Endpoint Playground
Test Crawlora's Get an Adidas 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/adidas/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_id | string | Yes | Adidas SKU/product id, from a search result's products[].id field |
{
"code": 200,
"data": {
"base_model_number": "sample",
"brand": "sample",
"breadcrumbs": [
{
"link": "https://example.com/resource",
"text": "sample"
}
],
"canonical_url": "https://example.com/resource",
"category": "sample",
"color": "sample",
"current_price": 1.23,
"description": "sample",
"discount_text": "sample",
"fetched_at": "sample",
"gender": "sample",
"images": [
{
"sort_order": 1,
"url": "https://example.com/resource",
"view": "sample"
}
],
"model_number": "sample",
"name": "sample",
"outlet": true,
"product_id": "sample-id",
"product_type": "sample",
"sale": true,
"sale_price": 1.23,
"source_url": "https://example.com/resource",
"sport": [
"sample"
],
"standard_price": 1.23,
"variations": [
{
"gtin": "sample",
"size": "sample",
"sku": "sample",
"split_size": [
"sample"
]
}
]
},
"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-detail data for one Adidas SKU: name, brand, category, description, pricing (current/standard/sale), images, and every purchasable size variant. product_id is the Adidas SKU (e.g. JI0397), taken from a search result's products[].id field or the trailing segment of an Adidas product page URL. An unknown product_id returns a not-found error.
{
"code": 200,
"data": {
"base_model_number": "sample",
"brand": "sample",
"breadcrumbs": [
{
"link": "https://example.com/resource",
"text": "sample"
}
],
"canonical_url": "https://example.com/resource",
"category": "sample",
"color": "sample",
"current_price": 1.23,
"description": "sample",
"discount_text": "sample",
"fetched_at": "sample",
"gender": "sample",
"images": [
{
"sort_order": 1,
"url": "https://example.com/resource",
"view": "sample"
}
],
"model_number": "sample",
"name": "sample",
"outlet": true,
"product_id": "sample-id",
"product_type": "sample",
"sale": true,
"sale_price": 1.23,
"source_url": "https://example.com/resource",
"sport": [
"sample"
],
"standard_price": 1.23,
"variations": [
{
"gtin": "sample",
"size": "sample",
"sku": "sample",
"split_size": [
"sample"
]
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/adidas/product?product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"