Endpoint Playground
Test Crawlora's Shopify Product Recommendations 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/shopify/products/mens-wool-runners/recommendations?url=https%3A%2F%2Fwww.allbirds.com&limit=10&intent=related" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | mens-wool-runners | Product handle |
| url | string | Yes | https://www.allbirds.com | Shopify storefront URL |
| limit | integer | No | 10 | Maximum products, defaults to 10 and supports up to 20 |
| intent | string | No | related | Recommendation intent. Allowed values: related, complementary |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.allbirds.com",
"source_url": "https://www.allbirds.com",
"handle": "mens-wool-runners",
"product_id": "6616124981328",
"intent": "related",
"limit": 10,
"products": [
{
"handle": "mens-tree-runners",
"title": "Men's Tree Runners"
}
]
}
}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 recommended products from Shopify's credential-free recommendations Ajax endpoint. The route handle is resolved to a Shopify product id before fetching recommendations.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.allbirds.com",
"source_url": "https://www.allbirds.com",
"handle": "mens-wool-runners",
"product_id": "6616124981328",
"intent": "related",
"limit": 10,
"products": [
{
"handle": "mens-tree-runners",
"title": "Men's Tree Runners"
}
]
}
}curl "https://api.crawlora.net/api/v1/shopify/products/<handle>/recommendations?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"