Endpoint Playground
Test Crawlora's Fashionphile Search Suggest 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/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| types | string | No | Comma-separated suggestion types. Allowed values: product, collection, query | |
| limit | integer | No | Maximum results per type, defaults to 10 and supports up to 20 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.fashionphile.com",
"source_url": "https://www.fashionphile.com",
"query": "chanel",
"types": [
"product",
"collection",
"query"
],
"limit": 10,
"products": [
{
"handle": "chanel-caviar-quilted-chanel-19-wallet-on-chain-woc-white-pink-1838641",
"title": "Caviar Quilted Chanel 19 Wallet On Chain WOC White Pink",
"price": "2995.00"
}
],
"collections": [
{
"handle": "chanel",
"title": "Chanel"
}
],
"queries": [
{
"text": "chanel",
"url": "https://www.fashionphile.com/search?q=chanel"
}
]
}
}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 products, collections, and query suggestions from Fashionphile's (https://www.fashionphile.com) credential-free predictive search Ajax endpoint. The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.fashionphile.com",
"source_url": "https://www.fashionphile.com",
"query": "chanel",
"types": [
"product",
"collection",
"query"
],
"limit": 10,
"products": [
{
"handle": "chanel-caviar-quilted-chanel-19-wallet-on-chain-woc-white-pink-1838641",
"title": "Caviar Quilted Chanel 19 Wallet On Chain WOC White Pink",
"price": "2995.00"
}
],
"collections": [
{
"handle": "chanel",
"title": "Chanel"
}
],
"queries": [
{
"text": "chanel",
"url": "https://www.fashionphile.com/search?q=chanel"
}
]
}
}curl "https://api.crawlora.net/api/v1/fashionphile/search/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"