Endpoint Playground
Test Crawlora's Lululemon Outfit 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/lululemon/outfit?unified_id=<unified_id>&color_code=<color_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| unified_id | string | Yes | lululemon product unified id, from a lululemon-product result's unified_id field | |
| color_code | string | Yes | lululemon color code, from a lululemon-product result's colors[].code field |
{
"code": 200,
"data": {
"color_code": "sample",
"fetched_at": "sample",
"item": {
"category": "sample",
"currency": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"list_price": 1.23,
"on_sale": true,
"sale_price": 1.23,
"title": "sample",
"url": "https://example.com/resource"
},
"looks": [
{
"id": "sample-id",
"items": [
{
"category": "sample",
"currency": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"list_price": 1.23,
"on_sale": true,
"sale_price": 1.23,
"title": "sample",
"url": "https://example.com/resource"
}
]
}
],
"source_url": "https://example.com/resource",
"unified_id": "sample-id"
},
"msg": "OK"
}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 lululemon's own curated outfit/style recommendations for one product color: every complementary item in each styled look, plus the anchor product itself. unified_id and color_code are lululemon-product's own unified_id response field and a color's code field (from lululemon-product's colors[] or lululemon-category's style_numbers-paired colors[]) -- not lululemon-product's own product_id, which is a different id space. Recommended items' own id is a separate, third-party catalog id (not lululemon-product's product_id) -- use each item's url to reach its product page. An unrecognized unified_id/color_code pair returns 404.
{
"code": 200,
"data": {
"color_code": "sample",
"fetched_at": "sample",
"item": {
"category": "sample",
"currency": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"list_price": 1.23,
"on_sale": true,
"sale_price": 1.23,
"title": "sample",
"url": "https://example.com/resource"
},
"looks": [
{
"id": "sample-id",
"items": [
{
"category": "sample",
"currency": "sample",
"id": "sample-id",
"image_url": "https://example.com/resource",
"list_price": 1.23,
"on_sale": true,
"sale_price": 1.23,
"title": "sample",
"url": "https://example.com/resource"
}
]
}
],
"source_url": "https://example.com/resource",
"unified_id": "sample-id"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/lululemon/outfit?unified_id=<unified_id>&color_code=<color_code>" \
-H "x-api-key: $CRAWLORA_API_KEY"