list_sellers
indiahandmade.comReturns paginated registered marketplace sellers from https://www.indiahandmade.com, or unique sellers discovered from product pages when a category is supplied. Directory results are newest-first and include seller names, shop slugs, profile and collection links, logos, and product counts.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_sellers?
Returns paginated registered marketplace sellers from https://www.indiahandmade.com, or unique sellers discovered from product pages when a category is supplied. Directory results are newest-first and include seller names, shop slugs, profile and collection links, logos, and product counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, page, limit and get the result back without maintaining a scraper.
Response
{
"mode": "<string>",
"page": 0,
"count": 0,
"limit": 0,
"order": "<string>",
"sellers": [
{}
],
"has_more": true,
"metadata": {},
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8a15314d-5614-4013-9b6a-2137a3cd5318/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8a15314d-5614-4013-9b6a-2137a3cd5318",
"variables": {
"category": "",
"page": 1,
"limit": 16
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8a15314d-5614-4013-9b6a-2137a3cd5318") — the "list_sellers" function, which returns paginated registered marketplace sellers from https://www.indiahandmade.com, or unique sellers discovered from product pages when a category is supplied. Directory results are newest-first and include seller names, shop slugs, profile and collection links, logos, and product counts.. It takes category (str), page (int), limit (int). Return the result as structured JSON.