Discover/thenorthface.com API
live

thenorthface.com APIthenorthface.com

Access The North Face product catalog, real-time inventory, pricing, and category navigation via 5 structured API endpoints. No scraping required.

Endpoints
5
Updated
17d ago
Try it
Sort option: 'bestMatches', 'priceLowToHigh', 'priceHighToLow', 'newest'
Number of results per page (minimum 5)
Search keyword (e.g. 'jacket', 'fleece', 'backpack')
Offset for pagination
Filter string (e.g. 'price:0-100|colorFamily:Black')
api.parse.bot/scraper/c9951d81-b2c1-4195-971e-02a83c30da83/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c9951d81-b2c1-4195-971e-02a83c30da83/search_products?count=5&query=backpack' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for products by keyword with optional sorting. Returns paginated product listings with pricing, ratings, and color swatches. The upstream API requires a minimum count of 5.

Input
ParamTypeDescription
sortstringSort option: 'bestMatches', 'priceLowToHigh', 'priceHighToLow', 'newest'
countintegerNumber of results per page (minimum 5)
queryrequiredstringSearch keyword (e.g. 'jacket', 'fleece', 'backpack')
startintegerOffset for pagination
filtersstringFilter string (e.g. 'price:0-100|colorFamily:Black')
Response
{
  "type": "object",
  "fields": {
    "items": "integer number of products returned in this page",
    "total": "integer total number of matching products",
    "products": "array of product objects with id, styleId, name, slug, rating, images, price, color_swatches"
  },
  "sample": {
    "data": {
      "items": 10,
      "total": 296,
      "products": [
        {
          "id": "NF0A7UQJ",
          "name": "Women’s Osito Jacket",
          "slug": "/p/womens/womens-fleece-299271/womens-osito-jacket-NF0A7UQJ",
          "price": {
            "current": 110,
            "currency": "USD",
            "discount": 0,
            "original": 110,
            "basePriceRange": {
              "maxPrice": 110,
              "minPrice": 110
            },
            "salePriceRange": {
              "maxPrice": 110,
              "minPrice": 77
            }
          },
          "images": "https://assets.thenorthface.com/images/t_Thumbnail/v1761838344/NF0A7UQJ0SO-HERO/Womens-Osito-Jacket-TNF-HERO.png",
          "rating": {
            "score": 4.8,
            "numReviews": 2312
          },
          "styleId": "NF0A7UQJ",
          "color_swatches": [
            {
              "name": "White Dune",
              "value": "QLI",
              "variationGroupId": "NF0A7UQJQLI"
            }
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the thenorthface.com API

This API exposes 5 endpoints covering The North Face's full product catalog, from keyword search and category browsing to per-variant inventory levels. The get_product_detail endpoint alone returns over a dozen fields including feature lists, color/size attributes, and all purchasable variants with stock status. Pair it with get_product_inventory to get real-time inStock flags and maximum available quantities for every size and color combination of any style ID.

Product Search and Category Browsing

The search_products endpoint accepts a query string (e.g. 'jacket', 'fleece') and returns a paginated list of matching products. Each product object includes id, styleId, name, slug, rating, images, price, and color_swatches. Pagination is controlled via start (offset) and count (minimum 5 per page). Results can be sorted by bestMatches, priceLowToHigh, priceHighToLow, or newest, and filtered using a pipe-delimited filters string such as 'price:0-100|colorFamily:Black'.

The get_category_products endpoint works similarly but scopes results to a specific category. It accepts either a full slug like 'mens-jackets-and-vests-211702' or just the trailing numeric ID '211702'. To discover valid category IDs without guessing, use get_category_listing, which returns the complete global navigation tree — including all Men's, Women's, Kids, and Bags & Gear hierarchies — with categoryId, title, and url for every node.

Product Detail and Inventory

get_product_detail takes a style_id (e.g. 'NF0A3C8D') and optionally a color code to narrow variant data. The response includes a full description, an array of features strings, a rating object with score and numReviews, and a variants array where each entry carries its own price, stock, and attributes covering color, size, and fitType. The attributes array also lists all available options per attribute code, making it straightforward to build a size/color selector.

get_product_inventory accepts the same style_id and returns one entry per variant with inStock boolean, maxQty, and productInventoryState string. This endpoint is useful when you only need availability data and want to avoid fetching the full detail payload — for instance, when polling a watchlist of styles for restock events.

Common use cases
  • Monitor real-time restock events by polling get_product_inventory for out-of-stock size/color variants using productInventoryState
  • Build a price comparison tool using search_products with priceLowToHigh sort and the price field on each product object
  • Sync a product feed to an external database using get_category_products paginated across all category IDs from get_category_listing
  • Generate size availability grids for a buying guide by reading variants[].attributes from get_product_detail
  • Track color availability across a product line by filtering get_product_detail responses by color code
  • Build a navigation sitemap by walking the hierarchical children tree returned by get_category_listing
  • Aggregate average rating and review counts across a category using the rating.score and rating.numReviews fields
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does The North Face have an official public developer API?+
The North Face does not publish a public developer API or documentation portal for third-party access to its product catalog or inventory data.
What does `get_product_inventory` return that `get_product_detail` doesn't already cover?+
get_product_detail includes variant stock data as part of a larger payload that also fetches descriptions, feature lists, images, and attributes. get_product_inventory returns only the inventory fields — inStock, maxQty, and productInventoryState — for every variant of a style. Use it when you need availability data alone and want a smaller, faster response, such as polling a list of styles for restock.
How does pagination work across `search_products` and `get_category_products`?+
Both endpoints use start (zero-based offset) and count (items per page, minimum 5) parameters. The response includes a total field with the full match count, so you can calculate the number of pages needed and iterate with increasing start values.
Does the API return customer review text or Q&A content?+
Not currently. The API returns aggregate rating data — score and numReviews — but individual review text, reviewer details, and Q&A threads are not exposed. You can fork this API on Parse and revise it to add an endpoint covering per-product review content.
Can I filter search results by size, not just price and color?+
The filters parameter on search_products documents examples using price and colorFamily segments. Size-based filtering via the same parameter is not documented in the current spec. You can fork this API on Parse and revise the search endpoint to add size filter support once you identify the correct filter key.
Page content last updated . Spec covers 5 endpoints from thenorthface.com.
Related APIs in EcommerceSee all →
patagonia.com API
Access Patagonia's full product catalog via search and category browsing. Retrieve detailed product information including variants, pricing, specs, and materials. Fetch customer reviews, locate nearby stores and authorized dealers, and browse the Worn Wear used and refurbished gear selection.
abercrombie.com API
Search and browse Abercrombie & Fitch products across categories, new arrivals, and clearance items while retrieving detailed product information like pricing and availability. Access curated collections and find exactly what you're looking for with powerful search capabilities.
rei.com API
Search and browse REI's full catalog of outdoor gear and clothing, compare detailed product specifications, check real-time store availability, and read customer reviews to find the perfect equipment for your adventures. Explore products by category or use targeted searches to discover gear that matches your needs, all with instant access to pricing and local stock information.
nykaafashion.com API
Search and browse Nykaa Fashion's product catalog to discover clothing, accessories, and beauty items across multiple categories. Get detailed product information including prices, descriptions, and availability to help you find exactly what you're looking for.
backcountry.com API
backcountry.com API
urbanoutfitters.com API
Search Urban Outfitters' catalog to find products and browse categories, then view detailed information including prices, descriptions, color and size availability for each item. Check current sale counts and discover what's trending across the store's product lineup.
nike.com API
Search the Nike product catalog by keyword and retrieve detailed product information including pricing, sizing, color variants, and availability. Use autocomplete suggestions to refine queries and discover relevant products on Nike.com.
gap.com API
Search and browse Gap's product catalog by keyword or category, retrieve detailed product information including pricing, available sizes, colors, and customer reviews, get product recommendations, locate nearby Gap retail stores, and explore the full site navigation and category tree.