Discover/Nike API
live

Nike APInike.com

Search Nike's product catalog, retrieve product details with sizing and color variants, get autocomplete suggestions, and browse sale deals from Nike.com.

This API takes change requests — .
Endpoint health
verified 15h ago
search_suggestions
search_products
get_product_details
get_deals
4/4 passing latest checkself-healing
Endpoints
4
Updated
15h ago

What is the Nike API?

The Nike.com API exposes 4 endpoints covering product search, individual product details, autocomplete suggestions, and sale deals. The search_products endpoint returns paginated results across Nike's full US catalog — including prices, color variants, images, and product URLs — while get_product_details delivers size availability, discount percentages, and all color variants for a single product by style-color code or URL.

This call costs1 credit / call— charged only on success
Try it
Page number (1-based)
Products per page. Must be 24, 50, or 100. Other values are rounded to nearest valid option.
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.
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.
Call it over HTTPgrab 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 · 4 totalmissing one? ·

Full-text search over Nike's product catalog. Returns paginated product summaries with prices, colors, images, and links. Pagination via page number; each page contains up to `count` items. Only the US marketplace with English language is confirmed working.

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.
Response
{
  "type": "object",
  "fields": {
    "page": "integer - current page number",
    "count": "integer - products per page",
    "query": "string - the search query used",
    "products": "array of product summary 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"
  }
}

About the Nike API

Product Search and Browsing

The search_products endpoint accepts a query string (e.g. 'air max', 'running shoes') and returns paginated product summaries. Each result includes product_code, title, subtitle, price, color, images, url, and featured_attributes. The count parameter accepts 24, 50, or 100 items per page; other values are rounded to the nearest valid option. The page parameter is 1-based. Coverage is confirmed for the US marketplace with English language only.

Product Details

get_product_details accepts either a full Nike product URL via product_url or a style-color code like 'IB1873-110' via style_color. The response includes a price object with current_price, original_price, discount_percentage, and currency; a sizes array where each entry has a label and status (indicating availability); a genders array; a description string; and an images array covering all colorways with square_url, portrait_url, and pdp_url per variant.

Suggestions and Deals

search_suggestions takes a partial query and returns an array of suggestion objects with display_text and search_text, useful for search-as-you-type interfaces. The get_deals endpoint targets Nike Poland (nike.com/pl) and returns sale products with name, price, previous_price, discount_percentage, currency, url, and image_url. It supports the same pagination parameters as product search. The deals endpoint is the only one that returns previous_price and discount_percentage at the list level.

Reliability & maintenanceVerified

The Nike API is a managed, monitored endpoint for nike.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nike.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official nike.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
15h ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Nike price tracker that monitors current_price and original_price changes on specific style-color codes.
  • Power a product comparison tool using size status from get_product_details to surface in-stock colorways.
  • Implement a Nike-specific search bar using search_suggestions to return autocomplete results as the user types.
  • Aggregate sale products with get_deals to surface discounted Nike items with discount_percentage and previous_price.
  • Sync a Nike product feed into an internal catalog using search_products with paginated results across keyword categories.
  • Retrieve all colorway image URLs for a product by style-color code to populate a visual product gallery.
  • Filter Nike footwear search results by product_type and genders fields for a targeted product discovery experience.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. 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 offer a publicly documented developer API or API marketplace for third-party access to its product catalog.
What does `get_product_details` return that `search_products` does not?+
get_product_details returns granular size-level availability (each size has a label and status), a full description text, all colorway images with portrait_url and pdp_url per variant, and a discount_percentage on the price object. The search_products endpoint returns only summary-level data: a single price, one color field, and preview images.
Are marketplaces outside the US supported?+
The search_products and search_suggestions endpoints are confirmed working only for the US marketplace with English language. The get_deals endpoint specifically targets Nike Poland. Other country or language codes may not return reliable results. You can fork this API on Parse and revise it to target additional Nike regional storefronts.
Does the API return customer reviews or ratings for Nike products?+
Not currently. The API covers product details, pricing, sizing, color variants, and sale deals. It does not include customer review text, star ratings, or review counts. You can fork this API on Parse and revise it to add a reviews endpoint.
What are the valid values for the `count` parameter in paginated endpoints?+
Both search_products and get_deals accept count values of 24, 50, or 100. Any value outside those options is rounded to the nearest valid one. The total_pages and total_results fields in the response reflect the actual pagination based on the resolved count.
Page content last updated . Spec covers 4 endpoints from nike.com.
Related APIs in EcommerceSee all →
nike.com.cn API
Search Nike China's catalog to find products, check availability, browse specific categories like men's, women's, and kids' shoes, and discover trending items and new arrivals. Get detailed product information including sizes, pricing, and specifications to help with shopping decisions and market research.
sneakers.com API
Search and browse sneaker products across categories and brands, view detailed product information, and discover current flash sales and trending searches from sneakers.com. Get instant access to sneaker listings, pricing, and real-time sale events to find exactly what you're looking for.
finishline.com API
Search and browse Finish Line's sneaker catalog, get detailed product information with pricing and availability, check upcoming sneaker releases, and find nearby store locations. Access product suggestions and inventory data across Finish Line's full product listing to compare options and track release dates.
nike.in API
Browse Nike India's complete product catalog and filter items by gender and category to find exactly what you're looking for. Sort through results with pagination to discover shoes, apparel, and accessories that match your preferences.
netshoes.com API
Search and browse products on Netshoes.com.br by keyword or category. Retrieve detailed product information including specifications, pricing, available sizes and colors, customer reviews, and delivery estimates by ZIP code.
footlocker.com API
Access product listings, pricing, availability, customer reviews, release calendars, and category/brand browsing data from Foot Locker.
stadiumgoods.com API
Search and discover premium sneakers and streetwear from Stadium Goods. Retrieve detailed product specifications, variant-level pricing, and real-time inventory status across the full catalog and curated collections.
adidas.de API
Search and browse Adidas products on adidas.de to find detailed information about items, availability, pricing, and specific categories. Get comprehensive product details including size availability and stock levels across the German Adidas store.