Lululemon API endpoint
Use Crawlora's Lululemon Store Directory API to extract supported public Lululemon data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/lululemon/storesReturns lululemon's own complete physical store directory (480 US and 86 Canada locations as of this endpoint's own research), including regular weekly hours and in-store amenities. All filters are optional and applied locally after fetching the full directory -- there is no live geo-search API on a credential-free host for this platform (see notes/lululemon-maintenance.md). country and state are free-text equality filters against the values this directory actually carries (2-letter codes, e.g. US/CA, NY/CA), not an enforced enum. lat and lng (both required together) filter to stores within radius_miles (1 to 500, defaults to 50), sorted nearest-first. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| country | string | No | Filter to one country by its 2-letter code | ||
| state | string | No | Filter to one state/province by its 2-letter code | ||
| lat | number | No | Latitude, requires lng | ||
| lng | number | No | Longitude, requires lat | ||
| radius_miles | number | No | 50 | Search radius in miles, 1 to 500, defaults to 50 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/lululemon/stores?country=us" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- Omitting every filter returns the complete directory. - `hours[]` is regular (non-holiday) weekly hours, sorted Monday-first — the upstream's own array order is alphabetical by day name, not calendar order. - `distance_miles` is populated only when `lat`/`lng` were given. - `status` and `store_type` are passed through as free strings (e.g. `active`, `regular`) rather than an enforced enum — the site's own UI shows additional states (`Opening Soon`, `Closed`) not yet captured in this field's raw upstream value, so unrecognized values are not dropped. - `message`, when non-empty, is a store-specific notice from the upstream (e.g. a temporary closure note). ```json {"code":200,"msg":"OK","data":{"count":1,"source_url":"https://shop.lululemon.com/stores/all-lululemon-stores?locale=en_US&sl=US","fetched_at":"2026-08-14T09:00:00Z","stores":[{"id":"00500","name":"The Shops at Hudson Yards","slug":"/stores/us/new-york/hudson-yards","url":"https://shop.lululemon.com/stores/us/new-york/hudson-yards","address":"500 West 33rd Street, RU 313A, New York, NY, US, 10001","city":"New York","state":"NY","state_name":"New York","country":"US","latitude":40.7538,"longitude":-74.0022,"store_type":"regular","status":"active","hours":[{"day":"monday","open":"10:00","close":"21:00"},{"day":"friday","open":"10:00","close":"21:00"}],"amenities":{"footwear":true,"has_mirror":false,"personal_shopping":true,"like_new":true,"buy_online_pickup_store":true,"curbside_pickup":true,"complementary_hemming":true,"returns_exchanges":true}}]}} ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
Request schema
No body schema
Response schema
#/definitions/lululemon.storesResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | lululemon.StoresResponse | No | ||||
| data.count | integer | No | ||||
| data.fetched_at | string | No | ||||
| data.source_url | string | No | ||||
| data.stores | array | No | ||||
| data.stores[].address | string | No | ||||
| data.stores[].amenities | lululemon.StoreAmenities | No | ||||
| data.stores[].amenities.buy_online_pickup_store | boolean | No | ||||
| data.stores[].amenities.complementary_hemming | boolean | No | ||||
| data.stores[].amenities.curbside_pickup | boolean | No | ||||
| data.stores[].amenities.footwear | boolean | No | ||||
| data.stores[].amenities.has_mirror | boolean | No | ||||
| data.stores[].amenities.like_new | boolean | No | ||||
| data.stores[].amenities.personal_shopping | boolean | No | ||||
| data.stores[].amenities.returns_exchanges | boolean | No | ||||
| data.stores[].city | string | No | ||||
| data.stores[].country | string | No | ||||
| data.stores[].distance_miles | number | No | ||||
| data.stores[].hours | array | No | ||||
| data.stores[].hours[].close | string | No | ||||
| data.stores[].hours[].day | string | No | ||||
| data.stores[].hours[].open | string | No | ||||
| data.stores[].id | string | No | ||||
| data.stores[].latitude | number | No | ||||
| data.stores[].longitude | number | No | ||||
| data.stores[].message | string | No | ||||
| data.stores[].name | string | No | ||||
| data.stores[].slug | string | No | ||||
| data.stores[].state | string | No | ||||
| data.stores[].state_name | string | No | ||||
| data.stores[].status | string | No | ||||
| data.stores[].store_type | string | No | ||||
| data.stores[].url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/lululemon/stores?country=us" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms