Discover/Nike API
live

Nike APInike.in

Access Nike India's product catalog via API. Filter by gender and category, paginate results, and retrieve names, prices in INR, and image URLs.

This API takes change requests — .
Endpoint health
verified 1d ago
list_products
1/1 passing latest checkself-healing
Endpoints
1
Updated
15d ago

What is the Nike API?

The Nike India API exposes 1 endpoint — list_products — that returns paginated product listings from nike.in, including each product's name, subtitle (type), INR price, and primary image URL. You can filter results by gender, category ID, and page size, and sort the response to suit your use case. The endpoint surfaces the full catalog breadth available on the Nike India storefront.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-based).
Sort order for results.
Gender category filter.
Number of products per page.
Numeric category ID for filtering products. Default '2' is the root catalog.
api.parse.bot/scraper/91142789-3675-40b5-bc5c-8eebd6c1011b/<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/91142789-3675-40b5-bc5c-8eebd6c1011b/list_products?page=1&sort=popularity&gender=men&page_size=36&category_id=2' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace nike-in-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Nike India SDK — bounded, re-runnable; every call capped."""
from parse_apis.nike_in_api import NikeIndia, Gender, Sort, ParseError

client = NikeIndia()

# List men's products sorted by popularity
for product in client.products.list(gender=Gender.MEN, sort=Sort.POPULARITY, limit=3):
    print(product.name, product.type, product.price, product.picture)

# List women's products sorted by price ascending
item = client.products.list(gender=Gender.WOMEN, sort=Sort.PRICE_ASC, limit=1).first()
if item:
    print(item.name, item.price)

# Typed error handling
try:
    for p in client.products.list(gender=Gender.KIDS, limit=2):
        print(p.name, p.type)
except ParseError as e:
    print(f"error: {e}")

print("exercised: products.list")
All endpoints · 1 totalmissing one? ·

List Nike India products filtered by gender and category. Returns paginated results sorted by the chosen criteria. Each product includes its name, type (subtitle), price in INR, and primary image URL.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
sortstringSort order for results.
genderstringGender category filter.
page_sizeintegerNumber of products per page.
category_idstringNumeric category ID for filtering products. Default '2' is the root catalog.
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "products": "array of product objects with name, type, price, picture",
    "page_size": "integer page size used",
    "total_count": "integer total products matching the filter"
  },
  "sample": {
    "data": {
      "page": 1,
      "products": [
        {
          "name": "Nike Vomero 18 SE",
          "type": "Men's Road Running Shoes",
          "price": 14195,
          "picture": "https://adn-static1.nykaa.com/nykdesignstudio-images/pub/media/catalog/product/9/f/9fe448dNike-IQ3413-704_1.jpg?rnd=20200526195200"
        },
        {
          "name": "Nike Pro Training",
          "type": "Men's Dri-FIT Trousers",
          "price": 4295,
          "picture": "https://adn-static1.nykaa.com/nykdesignstudio-images/pub/media/catalog/product/a/d/ad22b92Nike-HV0425-010_1.jpg?rnd=20200526195200"
        }
      ],
      "page_size": 5,
      "total_count": 1766
    },
    "status": "success"
  }
}

About the Nike API

What the API Returns

The list_products endpoint returns an array of product objects, each containing four fields: name (the product title), type (the product subtitle, typically the silhouette or line name), price (retail price in Indian Rupees), and picture (the primary product image URL). Alongside the product array, the response includes total_count (total matching products), page (current page number), and page_size (items per page), giving you everything needed to implement full pagination.

Filtering and Sorting

The endpoint accepts a gender parameter to narrow results to men's or women's catalog segments, and a category_id parameter that accepts a numeric ID — the default value of '2' represents the root catalog. The optional sort parameter controls result ordering. Combine page and page_size to walk through large result sets; total_count in the response tells you the total number of matching records so you can calculate page depth without an extra request.

Coverage and Scope

Data reflects the Nike India storefront (nike.in) and prices are denominated in INR. The endpoint covers the browse-level catalog: product names, types, pricing, and images. It does not return stock levels, size availability, SKU-level detail, or customer reviews. The category_id filter gives you access to sub-catalog segments beyond the root, which is useful for building category-specific feeds or price monitors.

Reliability & maintenanceVerified

The Nike API is a managed, monitored endpoint for nike.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nike.in 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.in 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
1d ago
Latest check
1/1 endpoint 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 India price tracker that monitors INR price changes across gender categories over time.
  • Populate a product comparison tool with Nike India catalog data including names, types, and images.
  • Generate a gender-segmented product feed for a fashion aggregator using the gender filter.
  • Create a Nike India catalog snapshot for competitive analysis using total_count and pagination.
  • Drive a merchandising dashboard that organizes Nike India products by category using category_id.
  • Build an image gallery of Nike India products by pulling the picture field across paginated results.
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 India have an official developer API?+
Nike does not publish a public developer API for nike.in or its India storefront. There is no documented official endpoint available to third-party developers.
What product fields does `list_products` return?+
Each product object contains name (product title), type (subtitle or line name), price (INR retail price), and picture (primary image URL). The response wrapper also includes total_count, page, and page_size for pagination handling.
Does the API return size availability or stock levels?+
Not currently. The API covers browse-level catalog data: names, types, prices, and images. Size availability, inventory status, and SKU-level detail are not included in the current response shape. You can fork this API on Parse and revise it to add an endpoint that retrieves per-product size and stock data.
Can I filter by both gender and a specific sub-category at the same time?+
Yes. The list_products endpoint accepts both gender and category_id as independent parameters, so you can combine them in a single request. The category_id default of '2' is the root catalog; supply a different numeric ID to target a sub-category.
Does the API cover product reviews or ratings for Nike India listings?+
Not currently. The API returns catalog-level fields only — name, type, price, and image. Customer reviews and ratings are not part of the response. You can fork this API on Parse and revise it to add a product reviews endpoint.
Page content last updated . Spec covers 1 endpoint from nike.in.
Related APIs in EcommerceSee all →
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.
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.
sheinindia.in API
Browse SHEIN India's fashion catalog by searching products, filtering by category (women, men, sneakers), and viewing detailed product information. Access homepage content, explore curated collections, and discover items across multiple shopping categories all in one place.
adidas.cl API
Browse and search Adidas Chile's product catalog by filtering across gender, sport, and category options, then view detailed information for any item including pricing and specifications. Access complete product listings with full pagination support to explore the entire collection.
myntra.com API
Search and browse Myntra's fashion catalog to find products by category, price, brand, and color with detailed information including specifications, images, and customer reviews. Get sorted results across multiple pages and discover featured collections from the homepage and brand pages.
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.
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.
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.