Marketplace
No threads yet
Live

list_seller_inventory

ebay.com

Returns active inventory for one seller from https://ebay.com in the same listing format as eBay search, with keyword, category, condition, sort, and page filters.

Parameters7
Runs7
Updated3d ago
Operational7 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 list_seller_inventory?

Returns active inventory for one seller from https://ebay.com in the same listing format as eBay search, with keyword, category, condition, sort, and page filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass seller, keyword, category_id, condition, 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/af4d1be4-8518-4db5-9de4-a4f632fe219c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "af4d1be4-8518-4db5-9de4-a4f632fe219c",
    "variables": {
        "seller": "cocosprinkles",
        "keyword": "",
        "category_id": "0",
        "condition": "any",
        "sort": "newly_listed",
        "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="af4d1be4-8518-4db5-9de4-a4f632fe219c") — the "list_seller_inventory" function, which returns active inventory for one seller from https://ebay.com in the same listing format as eBay search, with keyword, category, condition, sort, and page filters..

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