Endpoint Playground
Test Crawlora's Fashion Nova 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/fashionnova/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.fashionnova.com",
"source_url": "https://www.fashionnova.com",
"handle": "example-product-handle",
"product_id": "6616124981328",
"intent": "related",
"limit": 10,
"products": [
{
"handle": "example-related-product",
"title": "Example Related Product"
}
]
}
}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 Fashion Nova (https://www.fashionnova.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.fashionnova.com",
"source_url": "https://www.fashionnova.com",
"handle": "example-product-handle",
"product_id": "6616124981328",
"intent": "related",
"limit": 10,
"products": [
{
"handle": "example-related-product",
"title": "Example Related Product"
}
]
}
}curl "https://api.crawlora.net/api/v1/fashionnova/products/<handle>/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"