Endpoint Playground
Test Crawlora's Fashionphile Search 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/search?condition=New&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Search query text | |
| condition | string | No | New | Filter by condition grade. Allowed values: New, Excellent, Very Good, Good, Fair |
| vendor | string | No | Filter by exact designer/vendor name, e.g. Chanel | |
| sort | string | No | relevance | Sort order. Allowed values: relevance, newest, price_asc, price_desc |
| page | integer | No | 1-based page, defaults to 1 | |
| limit | integer | No | Maximum products, defaults to 20 and supports up to 50 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.fashionphile.com",
"source_url": "https://www.fashionphile.com",
"query": "chanel",
"condition": "Excellent",
"sort": "price_desc",
"page": 1,
"limit": 1,
"total_items": 67020,
"products": [
{
"id": "16063392055343",
"handle": "chanel-brass-calfskin-large-grocery-by-chanel-shopping-basket-silver-1804472",
"title": "Brass Calfskin Large Grocery By Chanel Shopping Basket Silver",
"url": "https://www.fashionphile.com/products/chanel-brass-calfskin-large-grocery-by-chanel-shopping-basket-silver-1804472",
"vendor": "Chanel",
"product_type": "Bags",
"price": 72075,
"condition": "Excellent",
"available": true
}
]
}
}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, ranked products from Fashionphile's (https://www.fashionphile.com) own full-text and faceted product search, including condition grade, discount percentage, and other filter attributes not available from the classic catalog JSON endpoints in this family. The storefront URL is fixed server-side. Omitting `q` browses the full catalog subject to any condition/vendor filters and the chosen sort.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.fashionphile.com",
"source_url": "https://www.fashionphile.com",
"query": "chanel",
"condition": "Excellent",
"sort": "price_desc",
"page": 1,
"limit": 1,
"total_items": 67020,
"products": [
{
"id": "16063392055343",
"handle": "chanel-brass-calfskin-large-grocery-by-chanel-shopping-basket-silver-1804472",
"title": "Brass Calfskin Large Grocery By Chanel Shopping Basket Silver",
"url": "https://www.fashionphile.com/products/chanel-brass-calfskin-large-grocery-by-chanel-shopping-basket-silver-1804472",
"vendor": "Chanel",
"product_type": "Bags",
"price": 72075,
"condition": "Excellent",
"available": true
}
]
}
}curl "https://api.crawlora.net/api/v1/fashionphile/search" \
-H "x-api-key: $CRAWLORA_API_KEY"