Discover/ajio.com API
live

ajio.com APIajio.com

Search and browse Ajio.com products via API. Get pricing, ratings, size variants, brand listings, new arrivals, and sale products across all categories.

Endpoints
6
Updated
4mo ago
Try it
Zero-based page number for pagination.
Number of results per page.
Sort order: 'relevance', 'discount-desc', 'prce-asc', 'newn', 'prce-desc'.
Search keyword (e.g. 'shoes', 'puma', 'running shoes').
api.parse.bot/scraper/403a6af9-bd94-47a3-a922-1ea3484b2be8/<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/403a6af9-bd94-47a3-a922-1ea3484b2be8/search_products?page=0&size=5&sort=relevance&query=shoes&page_size=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Search for products by keyword on Ajio.com. Returns paginated results with product listings, facets, and sorting options.

Input
ParamTypeDescription
pageintegerZero-based page number for pagination.
sizeintegerNumber of results per page.
sortstringSort order: 'relevance', 'discount-desc', 'prce-asc', 'newn', 'prce-desc'.
queryrequiredstringSearch keyword (e.g. 'shoes', 'puma', 'running shoes').
Response
{
  "type": "object",
  "fields": {
    "products": "array of product listing objects with code, name, price, images, url, brandTypeName, discountPercent",
    "pagination": "object containing pageSize, sort, currentPage, totalResults, totalPages",
    "totalResults": "integer total number of matching products (inside pagination)"
  },
  "sample": {
    "data": {
      "products": [
        {
          "url": "/u-s-polo-assn--men-low-top-lace-up-sneakers/p/469696402_white",
          "code": "469696402001",
          "name": "Men Low-Top Lace-Up Sneakers",
          "price": {
            "value": 2352,
            "currencyIso": "INR",
            "displayformattedValue": "Rs.2,352"
          },
          "brandTypeName": "u-s-polo-assn-",
          "discountPercent": "51% off"
        }
      ],
      "pagination": {
        "sort": "relevance",
        "pageSize": 5,
        "totalPages": 275,
        "currentPage": 0,
        "totalResults": 12345
      }
    },
    "status": "success"
  }
}

About the ajio.com API

The Ajio.com API provides 6 endpoints covering product search, category browsing, brand listings, new arrivals, sale products, and full product detail. The get_product_detail endpoint returns over a dozen fields per product including size-level variant stock, aggregated ratings breakdowns, color options, and promotional pricing — all keyed by the product option code returned from search and listing endpoints.

Search and Browse

The search_products endpoint accepts a query string (e.g. 'puma running shoes') and returns an array of product listing objects alongside a pagination object. Each listing includes code, name, price, images, brandTypeName, and discountPercent. The sort parameter accepts 'relevance', 'discount-desc', 'prce-asc', 'prce-desc', and 'newn'. Pagination is zero-based via the page parameter, with totalResults and totalPages in the response. get_category_products and get_brand_products follow the same pagination and sort interface but scope results to a specific Ajio category brick code or brand name respectively.

Product Detail

get_product_detail takes a product_id in the format '469696402_white' — the code field from any listing endpoint — and returns the full product record. The price object includes value, currencyIso, displayformattedValue, and discountPercent. The variantOptions array enumerates available sizes with individual stock status, priceData, and scDisplaySize. The baseOptions array covers color variants. The ratingsResponse object includes averageRating, numUserRatings, and percentage breakdowns by star tier.

New Arrivals and Sale Products

get_new_arrivals returns products sorted newest-first and accepts an optional query to filter by keyword within new arrivals; pass 'all' to retrieve across all categories. get_sale_products returns listings ordered by highest discountPercent descending, also filterable by keyword. The sale listing response additionally includes a wasPriceData field not present on standard listing endpoints, which exposes the original pre-discount price for each product.

Common use cases
  • Track discount percentages across brand or category pages to monitor sale depth on Ajio
  • Build a size availability checker using variantOptions[*].stock from get_product_detail
  • Aggregate averageRating and numUserRatings from ratings responses for product comparison tools
  • Compile new-arrival feeds filtered by keyword using get_new_arrivals with a query param
  • Power a brand catalog page by paginating through get_brand_products for a given brand name
  • Compare current price against wasPriceData from get_sale_products to calculate actual savings
  • Monitor category-level inventory by iterating get_category_products with a known brick code
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 Ajio have an official public developer API?+
Ajio does not publish an official public developer API or API documentation for third-party access. This Parse API provides structured access to product, category, and brand data from the site.
How do I get a product option code to use with `get_product_detail`?+
Any listing endpoint — search_products, get_category_products, get_brand_products, get_new_arrivals, or get_sale_products — returns a code field on each product object (e.g. '469696402_white'). Pass that value as the product_id parameter to get_product_detail to retrieve full details including variants and ratings.
Does the API return customer review text or only aggregate ratings?+
The ratingsResponse object from get_product_detail covers aggregate data: averageRating, numUserRatings, and percentage breakdowns by star tier. Individual written review text is not included in the current endpoints. You can fork the API on Parse and revise it to add an endpoint that retrieves per-review content.
Are wishlist, order history, or account-level features accessible?+
The API covers public product discovery: search, category browsing, brand listings, new arrivals, sale items, and product detail. Account-level data such as wishlists, orders, or checkout state is not exposed. You can fork the API on Parse and revise it to add any account-scoped endpoints you need.
Is there a limit to how many results pagination can return per request?+
All listing endpoints accept a size parameter controlling results per page and a zero-based page parameter. The pagination response object returns totalResults and totalPages so you can iterate through the full result set. Very large size values may return fewer results than requested if the source caps the page size.
Page content last updated . Spec covers 6 endpoints from ajio.com.
Related APIs in EcommerceSee all →
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.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.
jumia.com.ng API
Search and browse thousands of products on Jumia Nigeria, including electronics, appliances, fashion, and more. Get real-time access to pricing, specifications, ratings, and availability across Jumia's full catalog to find and compare products.
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.
yoox.com API
Search and browse YOOX's fashion catalog to discover products by category, designer, new arrivals, and sale items. Get detailed product information to find exactly what you're looking for across the YOOX marketplace.
jumia.com.gh API
Browse and search thousands of products from Jumia Ghana's catalog, view detailed product information, and explore items across different categories. Get real-time search suggestions and instantly access pricing, descriptions, and availability for any item on Ghana's leading e-commerce platform.
jumia.co.ke API
Search and browse thousands of products on Jumia Kenya, view detailed product information and reviews, and discover flash sales and homepage deals all in one place. Filter by category, check product SKUs, and stay updated on the latest offers to find exactly what you're looking for.
revolve.com API
Browse Revolve.com's fashion inventory by searching products, filtering by category or sale status, and discovering new arrivals in real-time. Access detailed product information including pricing, descriptions, and availability to power your shopping app or fashion platform.