Marketplace
No threads yet
Live

search_canada_items

ebay.ca

Searches current item listings on https://ebay.ca with price, category, listing-type, sorting, and pagination filters. Returns basic listing information, images, pricing, seller context, and all item-card details exposed by eBay Canada.

Parameters8
Runs12
Updated10d ago
Degraded12 runs · 91.6% 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_canada_items?

Searches current item listings on https://ebay.ca with price, category, listing-type, sorting, and pagination filters. Returns basic listing information, images, pricing, seller context, and all item-card details exposed by eBay Canada. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, min_price, max_price, category_id, listing_type, sort_order, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "items": [
    {
      "url": "<string>",
      "title": "<string>",
      "item_id": "<string>",
      "attributes": {},
      "image_urls": [
        "<string>"
      ],
      "price_text": "<string>"
    }
  ],
  "query": "<string>",
  "has_next": true,
  "page_size": 0,
  "pagination": {},
  "sort_order": "<string>",
  "source_url": "<string>",
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/899326aa-8126-4532-9ab3-ffc4bb4ad970/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "899326aa-8126-4532-9ab3-ffc4bb4ad970",
    "variables": {
        "query": "laptop",
        "min_price": 0.0,
        "max_price": 0.0,
        "category_id": "0",
        "listing_type": "all",
        "sort_order": "best_match",
        "page": 1,
        "page_size": 60
    }
}'

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="899326aa-8126-4532-9ab3-ffc4bb4ad970") — the "search_canada_items" function, which searches current item listings on https://ebay.ca with price, category, listing-type, sorting, and pagination filters. Returns basic listing information, images, pricing, seller context, and all item-card details exposed by eBay Canada..

It takes query (str), min_price (float), max_price (float), category_id (str), listing_type (str), sort_order (str), page (int), page_size (int). Return the result as structured JSON.