Discover/kaviraco API
live

kaviraco APIkaviraco.in

Access Kavira's Indian apparel catalog via API. List, search, and filter products by category, retrieve sizes, availability, pricing, and images.

Endpoint health
verified 1d ago
get_product
list_products
search_products
3/3 passing latest checkself-healing
Endpoints
3
Updated
8d ago

What is the kaviraco API?

This API exposes 3 endpoints for querying the Kavira (kaviraco.in) clothing and apparel catalog. Use list_products to paginate the full catalog with optional category filtering and sort order, search_products to find items by keyword, and get_product to retrieve a specific item's full details including sizes, availability quantities, MRP, images, and product description.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination.
Sort order for results.
Number of products per page (max per request).
Filter by category ID. Known IDs: 71 (Blazers & Waistcoats), 17 (Hoodies), 35 (Jackets), 50 (Jeans and Jeggings), 47 (Leggings & Ethnic Pants), 69 (Men's Shirts & Dhoti Set), 55 (Sarees), 30 (Shirts), 43 (Sleep and Lounge Wear), 37 (Sweatshirt), 16 (T Shirts), 62 (Western Dresses), 63 (Western Shrug), 60 (Women Ethnic Wear), 61 (Women Western Tops).
api.parse.bot/scraper/016e1925-de59-4887-a1ca-3539832e8eb5/<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/016e1925-de59-4887-a1ca-3539832e8eb5/list_products?page=1&sort=price_desc' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

List all products from the Kavira store with optional category filtering and sorting. Returns paginated results. Each product includes a slug field that can be passed to get_product for full details.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order for results.
limitintegerNumber of products per page (max per request).
category_idstringFilter by category ID. Known IDs: 71 (Blazers & Waistcoats), 17 (Hoodies), 35 (Jackets), 50 (Jeans and Jeggings), 47 (Leggings & Ethnic Pants), 69 (Men's Shirts & Dhoti Set), 55 (Sarees), 30 (Shirts), 43 (Sleep and Lounge Wear), 37 (Sweatshirt), 16 (T Shirts), 62 (Western Dresses), 63 (Western Shrug), 60 (Women Ethnic Wear), 61 (Women Western Tops).
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "products": "array of product summary objects",
    "total_count": "total products matching the filter",
    "total_pages": "total number of pages"
  },
  "sample": {
    "data": {
      "page": 1,
      "products": [
        {
          "id": 27763744,
          "mrp": "804",
          "slug": "red-polycotton-hoodie-with-zipper-300gsm-27763744",
          "title": "Red Polycotton Hoodie with Zipper 300GSM",
          "image_url": "https://cdn.factori.com/2025-03-12-OGg6qLulbjkS4F7w9Carv8IYz.webp",
          "product_id": 1744,
          "category_id": 17,
          "is_trending": false,
          "category_name": "Category 17",
          "selling_price": "601",
          "is_new_arrival": true,
          "is_recommended": false,
          "origin_country": "India",
          "available_quantity": 492
        }
      ],
      "total_count": 473,
      "total_pages": 158
    },
    "status": "success"
  }
}

About the kaviraco API

Browsing and Filtering the Catalog

The list_products endpoint returns a paginated array of product summaries. You can narrow results using category_id — known values include 71 (Blazers & Waistcoats), 17 (Hoodies), 35 (Jackets), and 50 (Jeans and Jeggings). The sort parameter controls result ordering, limit sets how many items appear per page, and the response always includes total_count and total_pages so you can walk the full catalog programmatically.

Keyword Search

The search_products endpoint accepts a required query string (e.g. 'shirt', 'hoodie', 'saree') and returns matching products in the same paginated shape as list_products. You can combine query with category_id to narrow results further. Both list and search responses include a slug field on each product — this is the value you pass to get_product.

Product Detail

The get_product endpoint takes a product_slug (formatted as slugified title plus product ID, e.g. 'the-werewolf-cotton-t-shirt-180-gsm-round-neck-white-27763480') and returns the full product record. Key fields include mrp (maximum retail price as a string), sizes (an array of objects each with size_id, size_name, is_available, available_quantity, and total_sold), images (array of URLs), description, category_id, and is_trending. The category_name field may be null on detail responses.

Reliability & maintenanceVerified

The kaviraco API is a managed, monitored endpoint for kaviraco.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when kaviraco.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 kaviraco.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
3/3 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 size-availability checker that flags Kavira products where available_quantity drops below a threshold.
  • Track which products are marked is_trending across category pages for trend analysis.
  • Aggregate MRP data across categories to compare price distribution within the Kavira catalog.
  • Index the full product catalog for a searchable storefront mirror using list_products pagination.
  • Cross-reference total_sold per size to identify best-selling size variants for inventory planning.
  • Monitor new product additions by diffing total_count between periodic list_products calls.
  • Build a category-specific feed by filtering list_products with known category_id values.
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 kaviraco.in offer an official developer API?+
Kavira does not publish an official public developer API or documented developer portal. This Parse API provides structured access to their product catalog data.
What does the sizes array in get_product actually contain?+
Each element in the sizes array includes size_id, size_name, is_available (boolean), available_quantity (current stock count), and total_sold (historical units sold for that size). This lets you distinguish between a size that exists in the catalog and one that is currently in stock.
Are customer reviews or ratings available through this API?+
Not currently. The API covers product catalog data: titles, descriptions, pricing, images, sizes, and availability. You can fork this API on Parse and revise it to add an endpoint targeting product review data.
How does pagination work across the endpoints?+
Both list_products and search_products return page, total_count, and total_pages alongside the products array. Use the page and limit input parameters to walk through results. There is no cursor-based pagination — page numbers are integers starting at 1.
Does the API expose Kavira's full category tree or only the known category IDs listed?+
The documented known category_id values are 71, 17, 35, and 50. No endpoint currently returns a full category listing. You can fork this API on Parse and revise it to add a categories endpoint that enumerates all available category IDs and names.
Page content last updated . Spec covers 3 endpoints from kaviraco.in.
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.
kisanshop.in API
Browse fertilizer and agricultural product listings from KisanShop to access detailed information including brand names, nutrient composition, available pack sizes, and current pricing. Quickly retrieve comprehensive product details like images, descriptions, and direct links to help you find exactly what you need from their catalog.
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.
digikala.com API
Browse Digikala's special-offers section, search products by keyword with category and brand filtering, and retrieve full product details including pricing, variants, seller info, images, and specifications.
anker.com API
Search and browse Anker products to find prices, images, variants, and availability information directly from their online store. Get detailed product specifications to compare items and make informed purchasing decisions.
m.indiamart.com API
Search for products on IndiaMART Export and retrieve detailed information including product specifications and seller profiles. Access comprehensive seller data to evaluate vendors and make informed purchasing decisions.
verkkokauppa.com API
Search and browse products from Verkkokauppa.com to find items across categories, check real-time prices and availability, read customer reviews, and discover deals in outlet and clearance sections. Filter products by your preferences and get detailed product information including specifications and store stock levels.
kream.co.kr API
Access data from kream.co.kr.