Discover/Zeptonow API
live

Zeptonow APIzeptonow.com

Access Zepto's product catalog via API: search products, browse categories, get product details with pricing, stock status, and more for Indian grocery delivery.

This API takes change requests — .
Endpoint health
verified 49m ago
get_products_by_category
get_categories
search_products
get_product_detail
1/4 passing latest checkself-healing
Endpoints
4
Updated
3h ago

What is the Zeptonow API?

The Zepto API provides 4 endpoints covering Zepto's Indian quick-commerce grocery catalog, including product search, category browsing, and detailed product data. The get_product_detail endpoint returns over 10 fields per product including MRP in paise, discounted price, shelf life, country of origin, weight in grams, and multiple product images. Store-level scoping lets you target specific Zepto fulfillment locations by passing a store_id UUID.

Try it
Search query term for product lookup.
UUID of the Zepto store to search within. Defaults to a Bangalore store when omitted.
api.parse.bot/scraper/c5228c28-985b-40df-897c-f7d889d9c67a/<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/c5228c28-985b-40df-897c-f7d889d9c67a/search_products?query=milk&store_id=b4dc8d65-ed2e-4142-81b6-373982b13500' \
  -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 zeptonow-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: Zepto SDK — bounded, re-runnable; every call capped."""
from parse_apis.zeptonow_com_api import Zepto, ProductNotFound

client = Zepto()

# Browse all available categories and their subcategories.
for category in client.categories.list(limit=3):
    print(category.name, category.group, len(category.subcategories))

# Search for products by query.
for product in client.products.search(query="milk", limit=3):
    print(product.name, product.discounted_price, product.quantity)

# Drill into a category's subcategory to list its products.
cat = client.categories.list(limit=1).first()
if cat and cat.subcategories:
    subcat = cat.subcategories[0]
    for item in subcat.products(limit=3):
        print(item.name, item.mrp, item.in_stock)

# Fetch full product detail from a search result.
hit = client.products.search(query="coffee", limit=1).first()
if hit:
    try:
        detail = hit.detail()
        print(detail.name, detail.brand, detail.weight_quantity, detail.discount_percent)
    except ProductNotFound as e:
        print("gone:", e.product_id)

print("exercised: categories.list / products.search / subcategory.products / product.detail")
All endpoints · 4 totalmissing one? ·

Returns product recommendations from the store's catalog. Products include name, brand, price, image, availability, and quantity. Results are server-rendered product listings associated with the store; the number of items per call is determined by the platform (typically 5-15 products).

Input
ParamTypeDescription
queryrequiredstringSearch query term for product lookup.
store_idstringUUID of the Zepto store to search within. Defaults to a Bangalore store when omitted.
Response
{
  "type": "object",
  "fields": {
    "query": "the search query used",
    "products": "array of product objects with product_id, name, brand, mrp, discounted_price, image_url, in_stock, quantity"
  },
  "sample": {
    "data": {
      "query": "milk",
      "products": [
        {
          "mrp": 0,
          "name": "Sleepy Owl Assorted Premium Instant Coffee Sachets",
          "brand": "Sleepy Owl",
          "in_stock": true,
          "quantity": "1 pack (10 x 2 g)",
          "image_url": "https://cdn.zeptonow.com/production/cms/product_variant/c98e9195-d3aa-4342-9087-01057eeaa217.jpeg",
          "product_id": "6a7a5e55-a718-405f-8435-536276c19f92",
          "discounted_price": 9900
        }
      ]
    },
    "status": "success"
  }
}

About the Zeptonow API

Product Search and Category Navigation

The search_products endpoint accepts a query string and an optional store_id, returning an array of product objects with fields including product_id, name, brand, mrp, discounted_price, image_url, in_stock, and quantity. Result counts vary per query (typically 5–15 items) based on store inventory. The get_categories endpoint retrieves the full category tree for a given store, returning each category's id, name, group, image_url, and a nested subcategories array — the subcategory IDs from this response are the required input for get_products_by_category.

Category Product Listings

The get_products_by_category endpoint lists products within a specific subcategory using its UUID (subcategory_id). It supports zero-based pagination via the page_number parameter and returns an end_of_list boolean so you can stop paginating without guessing. The product fields mirror those from search: product_id, name, brand, mrp, discounted_price, image_url, in_stock, and quantity. Note that some subcategories may return empty results depending on the store's current inventory.

Full Product Detail

The get_product_detail endpoint takes a product_variant_id (obtainable from search or category listing results) and returns the most complete product record in the API: name, brand, description, mrp (in paise — divide by 100 for INR), images (array of full URLs), in_stock, weight_in_gms, shelf_life, highlights (key-value pairs for attributes like nutritional info or certifications), and country_of_origin. All four endpoints accept an optional store_id; when omitted, requests default to a Bangalore store.

Reliability & maintenanceVerified

The Zeptonow API is a managed, monitored endpoint for zeptonow.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when zeptonow.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 zeptonow.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
49m ago
Latest check
1/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
  • Track real-time price changes between mrp and discounted_price across Zepto product listings.
  • Build a category-aware grocery comparison tool using get_categories subcategory IDs and get_products_by_category.
  • Monitor in_stock status for specific products by polling get_product_detail with known product_id values.
  • Aggregate product metadata (shelf life, country of origin, highlights) for nutritional or sourcing research.
  • Populate a grocery product database by paginating through subcategories using page_number and end_of_list.
  • Search Zepto's catalog programmatically with search_products to compare pricing with other Indian grocery platforms.
  • Extract brand-level catalog coverage per store by grouping brand fields returned across category listings.
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 Zepto offer an official public developer API?+
Zepto does not publish a public developer API or API documentation as of mid-2025. There is no official API portal or developer program available.
What does `get_product_detail` return that the listing endpoints don't?+
The listing endpoints (search_products and get_products_by_category) return a concise set of fields: product_id, name, brand, mrp, discounted_price, image_url, in_stock, and quantity. get_product_detail adds description, an images array with multiple URLs, weight_in_gms, shelf_life, country_of_origin, and a highlights array of key-value attribute pairs.
How does `mrp` pricing work in the response?+
The mrp and discounted_price fields in all endpoints are returned in paise (Indian subunit). Divide by 100 to get the value in Indian Rupees. For example, an mrp of 9900 represents ₹99.00.
Does the API cover multiple cities or stores across India?+
All four endpoints accept a store_id UUID parameter, so you can target specific Zepto stores. When store_id is omitted, the API defaults to a Bangalore store. The API does not include an endpoint to enumerate all available stores or city-level store IDs. You can fork this API on Parse and add an endpoint to expose store discovery if your use case requires multi-city coverage.
Does the API return user reviews, ratings, or order history for products?+
Not currently. The API covers product catalog data: pricing, availability, categories, and product attributes. Reviews, ratings, and order history are not included. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Page content last updated . Spec covers 4 endpoints from zeptonow.com.
Related APIs in Food DiningSee all →
zepto.com API
Access product and delivery data from Zepto, India's quick-commerce grocery platform. Search product listings with prices, discounts, and stock status; browse categories; set a delivery pincode to check serviceability; retrieve full product details by variant ID; and fetch real-time delivery ETA estimates.
zabars.com API
Search and browse Zabar's gourmet food products with autocomplete suggestions and detailed item information including pricing and availability. Get paginated results to easily discover specialty foods, wines, and delicacies from their curated selection.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.
zara.com API
Shop Zara's entire catalog by browsing categories, searching for specific items, and viewing detailed product information including measurements and related products. Find nearby store locations, check real-time inventory availability, and get shipping details all in one place.
instacart.com API
Search for grocery products across multiple retailers, view store locations and availability, and access detailed product information including prices and descriptions. Find the best deals and nearest stores offering the items you need.
nemlig.com API
Search and browse grocery products across categories on nemlig.com, view detailed product information and recipes, check current promotional offers, and manage a shopping basket. Add items to a basket and organize them before checkout.
tesco.com API
Search and browse Tesco's complete grocery catalog to find products with detailed nutritional information, ingredient lists, and customer reviews. Explore product suggestions via autocomplete and browse items organized by category to make informed shopping decisions.
pnp.co.za API
Search for groceries, browse products by category, and discover current specials at Pick n Pay stores, while accessing detailed product information, store locations, and fresh produce availability all in one place.