Endpoint Playground
Test Crawlora's Fashionphile 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/fashionphile/products/<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | Product handle |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.fashionphile.com",
"source_url": "https://www.fashionphile.com",
"product": {
"id": "16162141339951",
"handle": "louis-vuitton-monogram-grand-palais-1967585",
"title": "Monogram Grand Palais",
"price": 1350,
"images": [
{
"url": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/c77879f8dfbe42c952b7b7e3390e38f7.jpg?v=1788968134"
}
]
}
}
}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 for one Fashionphile (https://www.fashionphile.com) product handle. The storefront URL is fixed server-side; `handle` is the product's URL slug.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.fashionphile.com",
"source_url": "https://www.fashionphile.com",
"product": {
"id": "16162141339951",
"handle": "louis-vuitton-monogram-grand-palais-1967585",
"title": "Monogram Grand Palais",
"price": 1350,
"images": [
{
"url": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/c77879f8dfbe42c952b7b7e3390e38f7.jpg?v=1788968134"
}
]
}
}
}curl "https://api.crawlora.net/api/v1/fashionphile/products/<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"