Marketplace
No threads yet
Live

search_listings

ebay.com

Searches https://ebay.com listings by keyword, category, condition, seller, status, sort order, and page. Returns up to 60 results with item IDs, titles, prices, conditions, seller data, and all non-empty record details exposed by the search result cards.

Parameters8
Runs13
Updated10d ago
Operational13 runs · 100% 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_listings?

Searches https://ebay.com listings by keyword, category, condition, seller, status, sort order, and page. Returns up to 60 results with item IDs, titles, prices, conditions, seller data, and all non-empty record details exposed by the search result cards. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, category_id, condition, seller, status, sort, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "sort": "<string>",
  "query": "<string>",
  "source": "<string>",
  "status": "<string>",
  "has_more": true,
  "listings": [
    {}
  ],
  "messages": [
    "<string>"
  ],
  "page_size": 0,
  "returned_count": 0,
  "applied_filters": {},
  "total_results_text": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/65555c39-167f-4ecf-a7ce-b41f96423c3d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "65555c39-167f-4ecf-a7ce-b41f96423c3d",
    "variables": {
        "keyword": "iphone",
        "category_id": "0",
        "condition": "any",
        "seller": "",
        "status": "active",
        "sort": "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="65555c39-167f-4ecf-a7ce-b41f96423c3d") — the "search_listings" function, which searches https://ebay.com listings by keyword, category, condition, seller, status, sort order, and page. Returns up to 60 results with item IDs, titles, prices, conditions, seller data, and all non-empty record details exposed by the search result cards..

It takes keyword (str), category_id (str), condition (str), seller (str), status (str), sort (str), page (int), page_size (int). Return the result as structured JSON.