Marketplace
No threads yet
Live

search_products

target.com

Searches the https://target.com product catalog by keyword and returns paginated product records with local pricing, ratings, brand details, and availability for nearby stores. Supports server-side sorting, offset pagination, and an optional case-insensitive title filter.

Parameters6
Runs16
Updated10d ago
Degraded16 runs · 87.5% 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 search_products?

Searches the https://target.com product catalog by keyword and returns paginated product records with local pricing, ratings, brand details, and availability for nearby stores. Supports server-side sorting, offset pagination, and an optional case-insensitive title filter. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, zip_code, sort_by, offset, count, title_filter and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "offset": 0,
  "sort_by": "<string>",
  "products": [
    {}
  ],
  "zip_code": "<string>",
  "total_pages": 0,
  "current_page": 0,
  "sort_options": [
    {}
  ],
  "title_filter": "<string>",
  "nearby_stores": [
    {}
  ],
  "total_results": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f28413ae-db12-4abe-8653-2aa49bc31a82/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f28413ae-db12-4abe-8653-2aa49bc31a82",
    "variables": {
        "query": "coffee maker",
        "zip_code": "10001",
        "sort_by": "relevance",
        "offset": 0,
        "count": 24,
        "title_filter": ""
    }
}'

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="f28413ae-db12-4abe-8653-2aa49bc31a82") — the "search_products" function, which searches the https://target.com product catalog by keyword and returns paginated product records with local pricing, ratings, brand details, and availability for nearby stores. Supports server-side sorting, offset pagination, and an optional case-insensitive title filter..

It takes query (str), zip_code (str), sort_by (str), offset (int), count (int), title_filter (str). Return the result as structured JSON.