Endpoint Playground
Test Crawlora's List Old Navy storefront categories 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/oldnavy/categories?brand=on" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| brand | string | No | on | Storefront to list -- only on (Old Navy) is currently supported |
| cid | string | No | Category id to list related categories for; omit to list the top-level divisions |
{
"code": 200,
"msg": "OK",
"data": {
"brand": "on",
"source_url": "https://oldnavy.gap.com/",
"fetched_at": "2026-08-10T00:00:00Z",
"categories": [
{
"name": "New & Trending!",
"cid": "3028309",
"url": "https://oldnavy.gap.com/browse/category.do?cid=3028309&mlink=5151,topNav,visnav&nav=meganav%3ANew%20%26%20Trending!%3A%3A"
},
{
"name": "Women",
"cid": "1185233",
"url": "https://oldnavy.gap.com/browse/category.do?cid=1185233&mlink=5151,topNav,visnav&nav=meganav%3AWomen%3A%3A"
},
{
"name": "Boys",
"cid": "1185232",
"url": "https://oldnavy.gap.com/browse/category.do?cid=1185232&mlink=5151,topNav,visnav&nav=meganav%3ABoys%3A%3A"
}
]
}
}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.
Lists Old Navy's own storefront navigation as name/cid pairs, resolving the cid-discovery gap oldnavy-search, oldnavy-product, and oldnavy-category all document. Omit cid to list Old Navy's top-level divisions (e.g. Women, Men, Boys, Toddler). Pass a cid (a division's own, or any deeper category's) to list the related categories for that part of the storefront instead, in the same order the live storefront menu shows them -- this is section-level, not necessarily unique per leaf category. Currently only available for brand=on (Old Navy) -- Gap, Banana Republic, and Athleta render their storefront navigation as client-side-only JavaScript with no server-rendered category id to scrape.
{
"code": 200,
"msg": "OK",
"data": {
"brand": "on",
"source_url": "https://oldnavy.gap.com/",
"fetched_at": "2026-08-10T00:00:00Z",
"categories": [
{
"name": "New & Trending!",
"cid": "3028309",
"url": "https://oldnavy.gap.com/browse/category.do?cid=3028309&mlink=5151,topNav,visnav&nav=meganav%3ANew%20%26%20Trending!%3A%3A"
},
{
"name": "Women",
"cid": "1185233",
"url": "https://oldnavy.gap.com/browse/category.do?cid=1185233&mlink=5151,topNav,visnav&nav=meganav%3AWomen%3A%3A"
},
{
"name": "Boys",
"cid": "1185232",
"url": "https://oldnavy.gap.com/browse/category.do?cid=1185232&mlink=5151,topNav,visnav&nav=meganav%3ABoys%3A%3A"
}
]
}
}curl "https://api.crawlora.net/api/v1/oldnavy/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"