Endpoint Playground
Test Crawlora's Fashionphile 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/fashionphile/products/<handle>/recommendations?intent=related" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | Product handle | |
| limit | integer | No | 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.fashionphile.com",
"source_url": "https://www.fashionphile.com",
"handle": "louis-vuitton-monogram-grand-palais-1967585",
"product_id": "16162141339951",
"intent": "related",
"limit": 10,
"products": [
{
"handle": "prada-spazzolato-triangle-logo-monolith-pointy-55mm-loafers-41-black-1754823",
"title": "Spazzolato Triangle Logo Monolith Pointy 55mm Loafers 41 Black"
}
]
}
}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 for one Fashionphile (https://www.fashionphile.com) product handle. The route handle is resolved to a Shopify product id before fetching recommendations. The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.fashionphile.com",
"source_url": "https://www.fashionphile.com",
"handle": "louis-vuitton-monogram-grand-palais-1967585",
"product_id": "16162141339951",
"intent": "related",
"limit": 10,
"products": [
{
"handle": "prada-spazzolato-triangle-logo-monolith-pointy-55mm-loafers-41-black-1754823",
"title": "Spazzolato Triangle Logo Monolith Pointy 55mm Loafers 41 Black"
}
]
}
}curl "https://api.crawlora.net/api/v1/fashionphile/products/<handle>/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"