Endpoint Playground
Test Crawlora's Search or browse Nike products 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/nike/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | No | Search keyword. Exactly one of keyword or category is required. | |
| category | string | No | Category/subcategory browse slug, from nike-categories' own slug field or a prior response's facet_nav navigation. Exactly one of keyword or category is required. | |
| page | integer | No | One-based page number, defaults to 1 |
{
"code": 200,
"data": {
"category": "sample",
"count": 1,
"facet_nav": "sample",
"fetched_at": "sample",
"keyword": "sample",
"page": 1,
"page_size": 1,
"products": [
{
"badge_label": "sample",
"colors": [
{
"color_description": "sample",
"color_label": "sample",
"currency": "sample",
"discount_percentage": 1,
"image_url": "https://example.com/resource",
"initial_price": 1.23,
"price": 1.23,
"slug": "sample",
"style_color": "sample",
"url": "https://example.com/resource"
}
],
"group_key": "sample",
"product_type": "sample",
"subtitle": "sample",
"title": "sample"
}
],
"source_url": "https://example.com/resource",
"total_pages": 1,
"total_products": 1
},
"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.
Searches Nike.com product listings by keyword, or browses a category/subcategory listing by slug, with real pagination. Exactly one of keyword or category is required. Returns normalized product groups with pricing, colorway images, and every purchasable color variant, plus filter and subcategory navigation data (facet_nav) already present on the same response -- both keyword search and a category listing's first page include filter groups (Gender, Color, Price, Size, and similar); only a category listing includes a breadcrumb trail and subcategory drill-down options, and only its first page (a category listing's later pages do not repeat navigation data). Keyword search is best-effort relevance, not a guaranteed keyword match: for an obscure or nonsense keyword, Nike's own search index falls back to its own recommended results instead of returning an empty list, and there is currently no reliable signal in the response to distinguish a true keyword match from that fallback behavior. A keyword Nike's own search router treats as structurally empty (for example a punctuation-only query) does return a genuine empty result. Category values come from nike-categories' own slug field, or from a prior response's own facet_nav navigation paths (with the leading /w/ stripped). Requesting a page beyond the available result pages returns a not-found error.
{
"code": 200,
"data": {
"category": "sample",
"count": 1,
"facet_nav": "sample",
"fetched_at": "sample",
"keyword": "sample",
"page": 1,
"page_size": 1,
"products": [
{
"badge_label": "sample",
"colors": [
{
"color_description": "sample",
"color_label": "sample",
"currency": "sample",
"discount_percentage": 1,
"image_url": "https://example.com/resource",
"initial_price": 1.23,
"price": 1.23,
"slug": "sample",
"style_color": "sample",
"url": "https://example.com/resource"
}
],
"group_key": "sample",
"product_type": "sample",
"subtitle": "sample",
"title": "sample"
}
],
"source_url": "https://example.com/resource",
"total_pages": 1,
"total_products": 1
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/nike/search" \
-H "x-api-key: $CRAWLORA_API_KEY"