Endpoint Playground
Test Crawlora's Nike Category Taxonomy 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"data": {
"categories": [
{
"groups": [
{
"name": "sample",
"path": "sample",
"slug": "sample",
"subcategories": [
{
"name": "sample",
"path": "sample",
"slug": "sample"
}
]
}
],
"name": "sample",
"path": "sample"
}
],
"fetched_at": "sample",
"source_url": "https://example.com/resource"
},
"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 Nike's full Men/Women/Kids/Jordan category and subcategory taxonomy tree, sourced directly from Nike.com's own nav mega-menu. Each top-level entry (Men, Women, Kids, Jordan) breaks down into named groups (e.g. Shoes, Clothing, Accessories, Shop By Sport -- Women additionally carries a Shop by Color group, and Jordan is organized by Men/Women/Kids instead of by product type), each with its own subcategory entries. Every subcategory (and most groups) carries a slug usable as a future category-browse endpoint's path/slug input, and is directly browsable today at https://www.nike.com/w/<slug>. This mirrors the live nav exactly, including its seasonal/promotional groups (e.g. Limited Time, New & Featured) alongside the stable structural ones -- Nike's own markup does not distinguish the two.
{
"code": 200,
"data": {
"categories": [
{
"groups": [
{
"name": "sample",
"path": "sample",
"slug": "sample",
"subcategories": [
{
"name": "sample",
"path": "sample",
"slug": "sample"
}
]
}
],
"name": "sample",
"path": "sample"
}
],
"fetched_at": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/nike/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"