Marketplace
No threads yet
Live

browse_walmart_category

walmart.com

Browses a numeric department or category on https://walmart.com and returns paginated product summaries with current pricing, ratings, availability, badges, and available facets. Supports Walmart sorting and facet filters.

Parameters7
Runs13
Updated10d ago
Degraded13 runs · 92.3% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is browse_walmart_category?

Browses a numeric department or category on https://walmart.com and returns paginated product summaries with current pricing, ratings, availability, badges, and available facets. Supports Walmart sorting and facet filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_id, page, page_size, sort, facets, min_price, max_price and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "sort": "<string>",
  "query": "<string>",
  "title": "<string>",
  "facets": [
    {
      "key": "<string>",
      "name": "<string>",
      "values": [
        {
          "id": "<string>",
          "name": "<string>",
          "count": 0,
          "values": [
            "<any>"
          ],
          "selected": true
        }
      ],
      "maximum": 0,
      "minimum": 0,
      "display_type": "<string>",
      "selected_maximum": 0,
      "selected_minimum": 0
    }
  ],
  "has_more": true,
  "max_page": 0,
  "products": [
    {
      "name": "<string>",
      "brand": "<string>",
      "price": 0,
      "rating": 0,
      "seller": "<string>",
      "item_id": "<string>",
      "currency": "<string>",
      "condition": "<any>",
      "image_url": "<string>",
      "sponsored": true,
      "department": "<string>",
      "product_id": "<string>",
      "unit_price": "<string>",
      "product_url": "<string>",
      "availability": "<string>",
      "product_type": "<string>",
      "review_count": 0,
      "category_path": "<string>",
      "price_display": "<string>",
      "source_fields": {},
      "previous_price": "<string>",
      "availability_code": "<string>",
      "availability_badges": [
        "<string>"
      ]
    }
  ],
  "page_size": 0,
  "source_url": "<string>",
  "category_id": "<string>",
  "total_results": 0,
  "applied_facets": {},
  "returned_count": 0,
  "available_sorts": {},
  "related_searches": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/fcc974d6-6ee8-4a25-9532-58d5b8bf31da/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "fcc974d6-6ee8-4a25-9532-58d5b8bf31da",
    "variables": {
        "category_id": "976759",
        "page": 1,
        "page_size": 10,
        "sort": "best_match",
        "facets": {},
        "min_price": null,
        "max_price": null
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="fcc974d6-6ee8-4a25-9532-58d5b8bf31da") — the "browse_walmart_category" function, which browses a numeric department or category on https://walmart.com and returns paginated product summaries with current pricing, ratings, availability, badges, and available facets. Supports Walmart sorting and facet filters..

It takes category_id (str), page (int), page_size (int), sort (str), facets (dict[str, list[str]]), min_price (float | None), max_price (float | None). Return the result as structured JSON.