# Nordstrom Search ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/nordstrom/search` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/nordstrom-search | ## Description Search Nordstrom's catalog in real time and get structured product data including prices, brands, ratings, and availability. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/nordstrom/search' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Search women summer dress ```json { "page": 1, "results": [ { "sku": "FP-7654321-IVC", "url": "https://www.nordstrom.com/s/free-people-movement-good-karma-floral-maxi-dress/7654321", "name": "Free People Movement Good Karma Floral Maxi Dress", "brand": "Free People", "price": 168, "rating": 4.6, "is_sale": false, "category": "Women's Dresses", "currency": "USD", "product_id": "7654321", "sale_price": null, "availability": "in_stock", "review_count": 312, "size_options": [ "XS", "S", "M", "L", "XL" ], "color_options": [ "Ivory Combo", "Blue Multi", "Pink Multi" ], "thumbnail_url": "https://n.nordstrommedia.com/id/sr3/2c8e9f1a-4b3d-4e7c-9d2f-1a5b8c3e6f9d.jpeg?h=365&w=240", "is_new_arrival": true }, { "sku": "REF-8912345-WHT", "url": "https://www.nordstrom.com/s/reformation-palermo-linen-midi-dress/8912345", "name": "Reformation Palermo Linen Midi Dress", "brand": "Reformation", "price": 278, "rating": 4.3, "is_sale": true, "category": "Women's Dresses", "currency": "USD", "product_id": "8912345", "sale_price": 194.6, "availability": "low_stock", "review_count": 89, "size_options": [ "00", "0", "2", "4", "6", "8", "10", "12" ], "color_options": [ "White", "Sage", "Butter" ], "thumbnail_url": "https://n.nordstrommedia.com/id/sr3/5a7b2d1c-8e4f-4a9b-b3c7-2d6e9f1a4b8c.jpeg?h=365&w=240", "is_new_arrival": false } ], "total_pages": 43, "total_results": 847, "results_per_page": 20 } ``` ### Search men Nike sneakers ```json { "page": 1, "results": [ { "sku": "NK-6789012-BLK-10", "url": "https://www.nordstrom.com/s/nike-air-max-270-sneaker/6789012", "name": "Nike Air Max 270 Sneaker", "brand": "Nike", "price": 150, "rating": 4.7, "is_sale": false, "category": "Men's Shoes", "currency": "USD", "product_id": "6789012", "sale_price": null, "availability": "in_stock", "review_count": 1284, "size_options": [ "7", "7.5", "8", "8.5", "9", "9.5", "10", "10.5", "11", "12", "13" ], "color_options": [ "Black/White/Anthracite", "White/Pure Platinum", "University Red/Black" ], "thumbnail_url": "https://n.nordstrommedia.com/id/sr3/6789012-blk-hero.jpeg?h=365&w=240", "is_new_arrival": false }, { "sku": "NK-5341298-NAV-10", "url": "https://www.nordstrom.com/s/nike-react-infinity-run-flyknit-4/5341298", "name": "Nike React Infinity Run Flyknit 4 Road Running Shoe", "brand": "Nike", "price": 160, "rating": 4.5, "is_sale": true, "category": "Men's Shoes", "currency": "USD", "product_id": "5341298", "sale_price": 112, "availability": "in_stock", "review_count": 672, "size_options": [ "7", "8", "8.5", "9", "9.5", "10", "11", "12" ], "color_options": [ "Navy/White", "Black/Volt", "Grey Fog/White" ], "thumbnail_url": "https://n.nordstrommedia.com/id/sr3/5341298-nav-hero.jpeg?h=365&w=240", "is_new_arrival": false } ], "total_pages": 22, "total_results": 423, "results_per_page": 20 } ``` ## Documentation ## Overview Search Nordstrom's catalog in real time and get structured product data including prices, brands, ratings, and stock availability. Nordstrom is protected by Akamai Bot Manager. Piloterr handles that layer for you. ## Quickstart ``` GET https://api.piloterr.com/v2/nordstrom/search?query=women+summer+dress ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Search keywords | | `page` | integer | no | Page number (default: 1) | | `category` | string | no | Category slug filter | | `brand` | string | no | Brand name filter | | `min_price` | number | no | Minimum price in USD | | `max_price` | number | no | Maximum price in USD | | `sort` | string | no | Sort order | ## Main use cases - Track competitor pricing across Nordstrom by keyword or category - Monitor new arrivals for specific brands to catch trend signals early - Benchmark brand assortment and shelf placement on Nordstrom - Build price-drop alert systems by polling search results over time - Feed demand forecasting models with availability signals across sizes and colors Get access at https://www.piloterr.com/pricing