Discover/Ajio API
live

Ajio 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.

Endpoint health
verified 4d ago
get_new_arrivals
search_products
get_category_products
get_sale_products
get_product_detail
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Ajio 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.

Try it
Zero-based page number for pagination.
Number of results per page (e.g. 5, 10, 45).
Sort order for results.
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.
Call it over HTTPgrab 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'
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 ajio-com-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: Ajio SDK — search products, browse brands, drill into details."""
from parse_apis.ajio_scraper_api import Ajio, Sort, ProductNotFound

client = Ajio()

# Search for running shoes sorted by price, capped at 5 items total.
for item in client.productsummaries.search(query="running shoes", sort=Sort.PRICE_ASC, limit=5):
    print(item.name, item.brand_name, item.price.value, item.discount_percent)

# Drill into the first search hit for full product details.
hit = client.productsummaries.search(query="puma sneakers", limit=1).first()
if hit:
    detail = hit.details()
    print(detail.name, detail.brand_name, detail.price.value)
    if detail.variant_options:
        for v in detail.variant_options[:3]:
            print(v.code, v.display_size)

# Browse a brand's catalog using the Sort enum.
for product in client.brand("nike").products(sort=Sort.DISCOUNT_DESC, limit=3):
    print(product.name, product.price.value, product.discount_percent)

# Typed error handling when a product code doesn't exist.
try:
    bad = client.productsummaries.search(query="nonexistent_xyz_12345", limit=1).first()
    if bad:
        bad.details()
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_id}")

print("exercised: search / details / brand.products / ProductNotFound")
All endpoints · 6 totalmissing one? ·

Full-text search over all Ajio.com products. Returns paginated product listings with facets and sorting options. Each product includes pricing, images, brand, and discount information. Paginates via zero-based page number.

Input
ParamTypeDescription
pageintegerZero-based page number for pagination.
sizeintegerNumber of results per page (e.g. 5, 10, 45).
sortstringSort order for results.
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"
  },
  "sample": {
    "data": {
      "products": [
        {
          "url": "/skechers-go-run-consistant-lace-up-shoes/p/469544798_black",
          "code": "469544798001",
          "name": "Go Run Consistant Lace-Up Shoes",
          "price": {
            "value": 2200,
            "currencyIso": "INR",
            "displayformattedValue": "Rs.2,200"
          },
          "images": [
            {
              "url": "https://assets.ajio.com/medias/sys_master/root/20240404/qBTG/660ecc3516fd2c6e6a9db704/skechers_black_go_run_consistant_lace-up_shoes.jpg",
              "format": "product"
            }
          ],
          "wasPriceData": {
            "value": 5499,
            "displayformattedValue": "Rs.5,499"
          },
          "brandTypeName": "skechers",
          "discountPercent": "60% off"
        }
      ],
      "pagination": {
        "sort": "relevance",
        "pageSize": 5,
        "totalPages": 8527,
        "currentPage": 0,
        "totalResults": 42633
      }
    },
    "status": "success"
  }
}

About the Ajio API

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.

Reliability & maintenanceVerified

The Ajio API is a managed, monitored endpoint for ajio.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ajio.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 ajio.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
4d ago
Latest check
6/6 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
  • 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,000100 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.
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.
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.
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.