Discover/nike.com.cn API
live

nike.com.cn APInike.com.cn

Access Nike China product listings, search results, size availability, pricing, and category browsing via the nike.com.cn API. 11 endpoints.

Endpoints
11
Updated
10d ago
Try it
Search keyword (e.g., 'dunk', 'jordan', 'air force 1')
api.parse.bot/scraper/493682aa-31b6-4869-a47b-0d5f111e2dd8/<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/493682aa-31b6-4869-a47b-0d5f111e2dd8/search_products?query=jordan' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 11 totalclick to expand

Search for products by keyword query on Nike China. Returns matching products with pricing, images, and facet filters. Supports multi-word queries.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g., 'dunk', 'jordan', 'air force 1')
Response
{
  "type": "object",
  "fields": {
    "query": "string — the search query echoed back",
    "total": "integer or null — total matching products",
    "facets": "object — facet navigation with categories, breadcrumbs, and filters",
    "products": "array of product summaries with title, subtitle, productCode, groupKey, price, colors, images, url, path, badges"
  },
  "sample": {
    "data": {
      "query": "jordan",
      "total": 307,
      "facets": {
        "filters": [],
        "pageName": "shoes_jordan",
        "categories": [],
        "breadcrumbs": [],
        "selectedConcepts": []
      },
      "products": [
        {
          "url": "https://www.nike.com.cn/t/air-jordan-1-low-se-cny-...",
          "path": "/t/air-jordan-1-low-se-cny-...",
          "price": {
            "current": 999,
            "initial": 999,
            "currency": "CNY",
            "discount_percentage": 0
          },
          "title": "Air Jordan 1 Low SE CNY 新年系列",
          "badges": [
            "BEST_SELLER"
          ],
          "colors": {
            "count": null,
            "description": "帆白/帆白/浅巧克力色/麻黄"
          },
          "images": {
            "portrait": "https://static.nike.com.cn/a/images/...",
            "squarish": "https://static.nike.com.cn/a/images/..."
          },
          "groupKey": "5IFTLDrB",
          "subtitle": "男子运动鞋",
          "productCode": "IQ5321-121"
        }
      ]
    },
    "status": "success"
  }
}

About the nike.com.cn API

The Nike China API provides structured access to nike.com.cn catalog data across 11 endpoints, covering product search, category listings, size availability, and product detail. The get_product_detail endpoint returns pricing in CNY with discount percentages, full size arrays with availability status, feature descriptions, and spec sheets — data points that are tedious to collect manually across Nike's China storefront.

Search and Category Browsing

The search_products endpoint accepts a keyword query (e.g., 'dunk', 'air force 1') and returns matching product summaries including title, subtitle, productCode, groupKey, price, images, badges, and a facets object for filter navigation. The get_product_listings endpoint works similarly but operates on a category path (e.g., /w/mens-shoes-nik1zy7ok) and supports count, anchor, and filters parameters for pagination and attribute-based filtering. The next_anchor field in listing responses points to the next page of results. Convenience endpoints — get_mens_shoes, get_womens_shoes, get_kids_shoes, get_jordan_shoes, get_running_shoes, and get_new_arrivals — return the first page of each respective category with no input required.

Product Detail and Size Availability

get_product_detail accepts a style number such as HQ3048-501 or a URL path slug and returns a full product record: brand, sport, gender, images array, features (header + body pairs), specs, and a prices object with currentPrice, initialPrice, discountPercentage, and employeePrice in CNY. Size data comes back as an array of objects with label, localizedLabel, and status.

For real-time inventory, get_product_sizes takes a group_key (available from search or detail responses) and returns each size with availability.isAvailable, availability.ship, gtin, productCode, and merchSkuId. This separates inventory freshness from static catalog data, so you can call sizes independently without re-fetching the full detail record.

Trending Terms

get_hot_search_terms returns up to 8 trending search keywords from nike.com.cn, each with displayText and searchText fields. This is useful for monitoring what shoppers on the China platform are actively searching, which can differ meaningfully from Nike's global trends.

Common use cases
  • Track CNY price changes and discount percentages across Nike China product listings using get_product_listings with pagination.
  • Monitor real-time size availability for specific colorways using get_product_sizes with a groupKey.
  • Build a China-market sneaker search tool backed by search_products with keyword queries like 'jordan' or 'dunk'.
  • Compare Nike China new arrivals against global releases using get_new_arrivals to surface CN-exclusive colorways.
  • Feed trending keywords from get_hot_search_terms into localized marketing or SEO tooling.
  • Aggregate Jordan brand men's shoe listings using get_jordan_shoes for competitive pricing analysis in the CN market.
  • Collect full spec and feature data from get_product_detail to populate a product comparison database.
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 Nike China have an official developer API?+
Nike does not publish a public developer API for nike.com.cn. There is no documented developer portal or API key program for the China storefront specifically.
What does `get_product_sizes` return that `get_product_detail` does not?+
get_product_detail includes a sizes array with label and status, but get_product_sizes returns per-size inventory fields including availability.isAvailable, availability.ship, gtin, productCode, and merchSkuId. Because it targets a groupKey rather than a single style number, it can cover multiple colorways within a product group in one call.
How does pagination work for category listings?+
get_product_listings accepts an anchor integer as a starting offset and a count integer for page size. The response includes a next_anchor field — a URL string — that encodes the offset for the following page. If next_anchor is null, there are no further results. The total field tells you the full count of products in that category.
Does the API cover nike.com.cn customer reviews or ratings?+
Not currently. The endpoints cover product catalog data, pricing, size availability, and search — not user reviews or ratings. You can fork this API on Parse and revise it to add a reviews endpoint if that data is available on the product pages.
Is the product data limited to shoes, or does it include apparel and accessories?+
The convenience endpoints focus on shoe categories (men's, women's, kids', Jordan, running), but search_products and get_product_listings are not restricted to footwear. You can pass any valid nike.com.cn category path to get_product_listings to retrieve apparel or accessories listings. The response shape is identical across categories.
Page content last updated . Spec covers 11 endpoints from nike.com.cn.
Related APIs in EcommerceSee all →
mouser.com API
mouser.com API
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
Nike China API – nike.com.cn Product Data · Parse