list_india_products
nike.inReturns paginated Nike India products from https://www.nike.in filtered by gender and category, with sorting, prices in INR, images, availability, variants, and other product record details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_india_products?
Returns paginated Nike India products from https://www.nike.in filtered by gender and category, with sorting, prices in INR, images, availability, variants, and other product record details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass gender, category, sort, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"gender": "<string>",
"category": "<string>",
"products": [
{
"id": "<string>",
"sku": "<string>",
"name": "<string>",
"type": "<string>",
"details": {},
"price_inr": 0,
"offer_count": 0,
"product_url": "<string>",
"category_ids": [
"<string>"
],
"is_out_of_stock": true,
"primary_image_url": "<string>",
"image_aspect_ratio": 0,
"original_price_inr": 0,
"discount_percentage": 0,
"source_product_type": "<string>"
}
],
"page_size": 0,
"category_id": "<string>",
"source_sort": "<string>",
"total_count": 0,
"total_pages": 0,
"has_next_page": true,
"listing_title": "<string>",
"returned_count": 0,
"has_previous_page": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/d76099da-4762-4576-ad4e-e57fb55e01f4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d76099da-4762-4576-ad4e-e57fb55e01f4",
"variables": {
"gender": "men",
"category": "shoes",
"sort": "featured",
"page": 1,
"page_size": 36
}
}'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="d76099da-4762-4576-ad4e-e57fb55e01f4") — the "list_india_products" function, which returns paginated Nike India products from https://www.nike.in filtered by gender and category, with sorting, prices in INR, images, availability, variants, and other product record details.. It takes gender (str), category (str), sort (str), page (int), page_size (int). Return the result as structured JSON.