Discover/India Handmade API
live

India Handmade APIindiahandmade.com

Access the full directory of registered artisans on India's official handloom and handicraft marketplace. List sellers with pagination or fetch detailed profiles.

This API takes change requests — .
Endpoint health
verified 4h ago
list_sellers
get_seller_profile
2/2 passing latest checkself-healing
Endpoints
2
Updated
4h ago

What is the India Handmade API?

The India Handmade API provides 2 endpoints to access the seller directory on indiahandmade.com, the Government of India's marketplace for handloom and handicraft artisans. The list_sellers endpoint returns paginated results with each seller's name, shop slug, product count, and URLs, while get_seller_profile delivers individual seller details including location, star rating, about text, and banner image.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-indexed).
Number of sellers per page.
Category slug or URL path to filter sellers by product category. Accepts a category slug (e.g. 'bed-linen-cushions', 'home-and-living') or a full category path (e.g. 'home-and-living/bed-linen-cushions'). When provided, returns only sellers who have products listed under that category. Omitting returns all sellers regardless of category.
api.parse.bot/scraper/179e49c8-61d9-4621-bd1e-4bf98b872656/<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/179e49c8-61d9-4621-bd1e-4bf98b872656/list_sellers?page=1&limit=4&category=bed-linen-cushions' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Returns a paginated list of marketplace sellers. Without a category filter, returns all registered sellers from the seller directory (1798+ sellers, ordered by most recently registered first). With a category filter, returns unique sellers who have products listed under that category by fetching product pages in the category and extracting seller info. Category-filtered results require multiple upstream requests (one per product page until limit unique sellers are found), so response time scales with the limit. Use the page parameter to paginate through all sellers when no category is specified.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-indexed).
limitstringNumber of sellers per page.
categorystringCategory slug or URL path to filter sellers by product category. Accepts a category slug (e.g. 'bed-linen-cushions', 'home-and-living') or a full category path (e.g. 'home-and-living/bed-linen-cushions'). When provided, returns only sellers who have products listed under that category. Omitting returns all sellers regardless of category.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "limit": "results per page",
    "total": "total number of sellers (all sellers when unfiltered, found sellers count when category-filtered)",
    "sellers": "array of seller objects with name, shop_slug, product_count, profile_url, collection_url, logo_url",
    "category": "resolved category display name, present only when category filter is used"
  },
  "sample": {
    "data": {
      "page": 1,
      "limit": 16,
      "total": 1798,
      "sellers": [
        {
          "name": "SWASTIK MAHILA UDYOG SAHAKAR SAMITI",
          "logo_url": "https://img.indiahandmade.com/avatar//crop6a74b0592681b.jpg",
          "shop_slug": "SWASTIK MAHILA UDYOG SAHAKAR SAMITI",
          "profile_url": "https://www.indiahandmade.com/marketplace/seller/profile/shop/SWASTIK MAHILA UDYOG SAHAKAR SAMITI",
          "product_count": 3,
          "collection_url": "https://www.indiahandmade.com/marketplace/seller/collection/shop/SWASTIK MAHILA UDYOG SAHAKAR SAMITI"
        }
      ]
    },
    "status": "success"
  }
}

About the India Handmade API

Seller Directory Access

The list_sellers endpoint returns a paginated list of every registered seller on India Handmade. Each result includes the seller's name, shop_slug, product_count, profile_url, collection_url, and logo_url. The total field in the response lets you calculate page counts and build full pagination flows using the page and limit input parameters. Results follow the site's default ordering.

Detailed Seller Profiles

The get_seller_profile endpoint accepts a shop_slug (obtained from list_sellers) and returns a fuller picture of a single seller. The response includes name, about text (nullable), a rating out of 5 (nullable), a location string with city, state, pincode, and country, logo_url, banner_url (nullable), and both profile_url and collection_url. This makes it straightforward to build a seller detail view or enrich a directory listing.

Coverage and Scope

Both endpoints cover all sellers registered on indiahandmade.com, a platform run under the Government of India's Ministry of Textiles. The directory spans handloom weavers, handicraft artisans, and cooperatives. Individual product listings, order data, and transaction history are not part of this API — only seller identity and profile metadata are returned.

Reliability & maintenanceVerified

The India Handmade API is a managed, monitored endpoint for indiahandmade.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when indiahandmade.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 indiahandmade.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
4h ago
Latest check
2/2 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 searchable directory of Government of India-registered artisans using seller name, location, and rating fields.
  • Display seller profile cards with logo, banner image, and about text sourced from get_seller_profile.
  • Track total registered artisan count over time using the total field from list_sellers.
  • Map artisan distribution across Indian states using the location field from seller profiles.
  • Filter or rank sellers by star rating to surface highly-rated craftspeople.
  • Sync a local database of artisan shop slugs and product counts using paginated list_sellers calls.
  • Power an affiliate or discovery site linking to artisan collection_url pages on India Handmade.
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 indiahandmade.com have an official developer API?+
No. indiahandmade.com does not publish a public developer API or documented data access layer for third-party use.
What does get_seller_profile return, and what fields can be null?+
It returns name, about, rating, location, logo_url, banner_url, shop_slug, profile_url, and collection_url. The about text is null when the seller hasn't filled in a description, the rating is null if the seller hasn't been rated yet, and banner_url is null if no banner image is set.
Does the API return individual product listings for each seller?+
No. The API returns seller-level data only: identity fields, profile metadata, and a product_count integer. Individual product titles, prices, images, and descriptions are not currently returned. You can fork this API on Parse and revise it to add a product listings endpoint for a given seller's collection_url.
How does pagination work in list_sellers?+
The endpoint accepts a page integer (1-indexed) and a limit value. The response includes a total field representing all sellers across pages, so you can compute the number of pages as ceil(total / limit). If page or limit are omitted, the endpoint uses the site's defaults.
Are seller reviews or individual review text available through the API?+
The API surfaces an aggregate star rating (out of 5) on the seller profile but does not return individual review text, reviewer names, or review dates. You can fork this API on Parse and revise it to add a reviews endpoint if that detail is available on the seller's profile page.
Page content last updated . Spec covers 2 endpoints from indiahandmade.com.
Related APIs in MarketplaceSee all →
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.
indiamart.com API
indiamart.com API
dir.indiamart.com API
Search and extract supplier listings, product details, and business factsheets from the IndiaMart B2B directory. Browse by city and category, retrieve structured product specifications, pricing, and supplier verification data.
folksy.com API
Search and browse handmade products on Folksy by category, subcategory, or shop, and access detailed product information including pricing and availability. Discover sales and special offers while exploring artisan shops and their complete listings.
tradeindia.com API
Search and discover products, suppliers, and their contact information on TradeIndia's B2B marketplace. Browse product categories, find supplier profiles, and explore upcoming tradeshows and industry events — including locations, dates, venues, and organizer details.
etsy.com API
Discover what shoppers are searching for on Etsy by accessing real-time trending keywords and popular search terms that can help you identify market demand and optimize your product listings. Get instant access to autocomplete suggestions and "Popular right now" trends to stay ahead of customer interests and improve your shop's visibility.
shopsy.in API
Search and browse products on Shopsy.in with detailed information like pricing, categories, and current deals, while easily navigating through paginated results. Get access to product specifications, homepage promotions, and category listings to compare items and find the best offers.
mirraw.com API
Search and browse a curated collection of men's ethnic wear and traditional clothing from Mirraw's catalog to find the perfect cultural garments for any occasion. Filter through various styles, sizes, and designs of traditional menswear to discover authentic ethnic attire that matches your preferences.