Endpoint Playground
Test Crawlora's Old Navy Product 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/product?pid=<pid>&brand=on" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| pid | string | Yes | Color-specific product id, from a search result's colors[].id field | |
| brand | string | No | on | Storefront the pid belongs to |
{
"code": 200,
"data": {
"brand": "sample",
"color": "sample",
"description": "sample",
"fetched_at": "sample",
"images": [
"sample"
],
"name": "sample",
"offers": [
{
"availability": "sample",
"currency": "sample",
"price": 1.23,
"sku": "sample",
"url": "https://example.com/resource"
}
],
"pid": "sample-id",
"rating_count": 1,
"rating_value": 1.23,
"related_items": [
{
"name": "sample",
"pid": "sample-id",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource",
"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 normalized product-detail data for one color variant: name, description, images, aggregate rating, and every size offered in that color as a separate priced offer. pid is a color-specific product id, as returned by oldnavy-search's product colors[].id field (not the bare base product id). Select the storefront with the brand parameter (`on` for Old Navy, `gap` for Gap, `br` for Banana Republic, `at` for Athleta; defaults to `on`) -- it must match the brand the pid was found under.
{
"code": 200,
"data": {
"brand": "sample",
"color": "sample",
"description": "sample",
"fetched_at": "sample",
"images": [
"sample"
],
"name": "sample",
"offers": [
{
"availability": "sample",
"currency": "sample",
"price": 1.23,
"sku": "sample",
"url": "https://example.com/resource"
}
],
"pid": "sample-id",
"rating_count": 1,
"rating_value": 1.23,
"related_items": [
{
"name": "sample",
"pid": "sample-id",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource",
"url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/oldnavy/product?pid=<pid>" \
-H "x-api-key: $CRAWLORA_API_KEY"