Discover/nike.com API
live

nike.com APIwww.nike.com

Search Nike products, retrieve detailed pricing, sizing, color variants, and availability, plus autocomplete suggestions — all from Nike.com via a single API.

Endpoints
3
Updated
10d ago
Try it
Page number (1-based)
Products per page. Must be 24, 50, or 100. Other values are rounded to nearest valid optio
Search keyword (e.g., 'running shoes', 'air max', 'basketball shoes')
Language code. Only 'en' is confirmed working.
Marketplace/country code. Only 'US' is confirmed working; other values (e.g. 'GB') may cau
api.parse.bot/scraper/948eed75-bed5-4b47-9963-56d40cdec23b/<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/948eed75-bed5-4b47-9963-56d40cdec23b/search_products?page=1&count=24&query=running+shoes&language=en&marketplace=US' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search Nike products by keyword with pagination. Returns product listings with prices, colors, images, and links. Only the US marketplace with English language is confirmed working; other marketplace/language combinations may return upstream errors.

Input
ParamTypeDescription
pageintegerPage number (1-based)
countintegerProducts per page. Must be 24, 50, or 100. Other values are rounded to nearest valid option.
queryrequiredstringSearch keyword (e.g., 'running shoes', 'air max', 'basketball shoes')
languagestringLanguage code. Only 'en' is confirmed working.
marketplacestringMarketplace/country code. Only 'US' is confirmed working; other values (e.g. 'GB') may cause upstream errors.
Response
{
  "type": "object",
  "fields": {
    "page": "integer - current page number",
    "count": "integer - products per page",
    "query": "string - the search query used",
    "products": "array of product objects with product_code, title, subtitle, product_type, price, color, images, url, featured_attributes",
    "total_pages": "integer - total number of pages",
    "total_results": "integer - total number of matching products"
  },
  "sample": {
    "data": {
      "page": 1,
      "count": 24,
      "query": "running shoes",
      "products": [
        {
          "url": "https://www.nike.com/t/vomero-premium-mens-road-running-shoes-l11miwwa/HQ2050-101",
          "color": {
            "hex": "F0F4FF",
            "label": "White",
            "description": "White/Total Orange/Laser Orange/Lapis"
          },
          "price": {
            "currency": "USD",
            "current_price": 230,
            "original_price": 230,
            "discount_percentage": 0
          },
          "title": "Nike Vomero Premium",
          "images": {
            "square_url": "https://static.nike.com/a/images/t_default/...",
            "portrait_url": "https://static.nike.com/a/images/t_default/..."
          },
          "subtitle": "Men's Road Running Shoes",
          "promotions": null,
          "is_new_until": null,
          "product_code": "HQ2050-101",
          "product_type": "FOOTWEAR",
          "featured_attributes": [
            "BEST_SELLER"
          ]
        }
      ],
      "total_pages": 8,
      "total_results": 169
    },
    "status": "success"
  }
}

About the nike.com API

The Nike.com API covers 3 endpoints for querying the Nike product catalog: search by keyword, fetch full product details, and retrieve autocomplete suggestions. The get_product_details endpoint returns over a dozen fields per product including current and original price, size availability status, color variants with image URLs, gender targeting, and a style-color code you can use to look up any individual SKU.

Search and Browse Nike Products

The search_products endpoint accepts a query string and returns paginated product listings from Nike.com. You can request 24, 50, or 100 results per page using the count parameter (other values are rounded to the nearest valid option), and navigate results with the page parameter. Each result object includes product_code, title, subtitle, product_type, price, color, a set of images, a direct url, and featured_attributes. The endpoint also returns total_results and total_pages so you can build accurate pagination. Only the US marketplace (marketplace: 'US') with English (language: 'en') is confirmed to work reliably; other combinations may return upstream errors.

Product Details by URL or Style-Color Code

get_product_details accepts either a full Nike product URL via product_url or a style-color code via style_color (for example, HQ2050-101). The response includes a price object with currency, current_price, original_price, and discount_percentage; a sizes array where each entry carries a label, localized_label, and status (so you can tell which sizes are in stock); and an images array keyed by colorway, each with square_url, portrait_url, pdp_url, color_description, and status. Additional fields include description, genders, product_type, and full_title.

Autocomplete Suggestions

The search_suggestions endpoint takes a partial query string and returns a list of suggestion objects, each with a display_text (formatted for display) and a search_text (the raw term to pass back into search_products). An optional count parameter caps the number of suggestions returned. Like the search endpoint, only country: 'US' and language: 'en' are confirmed to work.

Common use cases
  • Build a Nike product price tracker using current_price and original_price from get_product_details to monitor discounts over time.
  • Aggregate size availability across colorways by checking the status field in the sizes array for a given style-color code.
  • Power a Nike product search interface with real-time autocomplete using the search_suggestions endpoint.
  • Create a sneaker catalog by crawling search results from search_products with the air max or similar query and storing product metadata.
  • Compare colorway image assets by iterating the images array returned by get_product_details and pulling portrait_url or square_url per variant.
  • Feed affiliate or comparison sites by extracting url, price, and title fields from search_products results for specific product queries.
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 have an official developer API?+
Nike does not publish a public developer API or API documentation for third-party access to its product catalog.
What does `get_product_details` return that `search_products` does not?+
get_product_details returns granular fields that the search listing omits: a full sizes array with per-size status values, a description string, discount_percentage in the price object, all colorway images with their individual pdp_url and color_description, and the genders array. search_products returns higher-level listing data suited for browsing rather than per-product detail.
Does the API cover marketplaces outside the US?+
Only the US marketplace is confirmed to work reliably. The marketplace parameter on search_products and the country parameter on search_suggestions accept other values (e.g. 'GB'), but these may return upstream errors. You can fork this API on Parse and revise it to target a specific non-US locale if you need consistent international coverage.
Does the API expose product reviews or ratings?+
No. The current endpoints return product metadata, pricing, sizing, and images. Review counts or star ratings are not included in any response field. You can fork this API on Parse and revise it to add an endpoint that fetches review data for a given product.
What values are valid for the `count` parameter in `search_products`?+
The only accepted values are 24, 50, and 100. If you pass a different integer, the API rounds it to the nearest valid option. The response always echoes back the actual count used, so you can verify what was applied.
Page content last updated . Spec covers 3 endpoints from www.nike.com.
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.