Marketplace
No threads yet
Live

list_seller_feedback_reviews

ebay.com

Returns paginated seller feedback cards from https://ebay.com with ratings, comments, author context, item details, media, summary counts, and page metadata.

Parameters9
Runs6
Updated3d ago
Operational6 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_feedback_reviews?

Returns paginated seller feedback cards from https://ebay.com with ratings, comments, author context, item details, media, summary counts, and page metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username, page, page_size, role, period, rating, sort, include_automated, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "source": "<string>",
  "filters": {},
  "summary": {},
  "feedback": [
    {}
  ],
  "username": "<string>",
  "pagination": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/02316cfd-6fe9-433c-b41a-0483597fa62d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "02316cfd-6fe9-433c-b41a-0483597fa62d",
    "variables": {
        "username": "cocosprinkles",
        "page": 1,
        "page_size": 25,
        "role": "all",
        "period": "all",
        "rating": "all",
        "sort": "most_relevant",
        "include_automated": true,
        "timeout_seconds": 30
    }
}'

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="02316cfd-6fe9-433c-b41a-0483597fa62d") — the "list_seller_feedback_reviews" function, which returns paginated seller feedback cards from https://ebay.com with ratings, comments, author context, item details, media, summary counts, and page metadata..

It takes username (str), page (int), page_size (int), role (str), period (str), rating (str), sort (str), include_automated (bool), timeout_seconds (int). Return the result as structured JSON.