Endpoint Playground
Test Crawlora's SKIMS 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/skims/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://skims.com",
"source_url": "https://skims.com",
"query": "wool",
"types": [
"product",
"collection",
"query"
],
"limit": 10,
"products": [
{
"handle": "example-product",
"title": "Example Product"
}
],
"collections": [
{
"handle": "example-collection",
"title": "Example Collection"
}
],
"queries": [
{
"text": "wool",
"url": "https://skims.com/search?q=wool"
}
]
}
}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 SKIMS's (https://skims.com) credential-free predictive search Ajax endpoint. The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://skims.com",
"source_url": "https://skims.com",
"query": "wool",
"types": [
"product",
"collection",
"query"
],
"limit": 10,
"products": [
{
"handle": "example-product",
"title": "Example Product"
}
],
"collections": [
{
"handle": "example-collection",
"title": "Example Collection"
}
],
"queries": [
{
"text": "wool",
"url": "https://skims.com/search?q=wool"
}
]
}
}curl "https://api.crawlora.net/api/v1/skims/search/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"