Live
get_seller_ratings_summary
ebay.comReturns seller profile details, feedback scores, positive percentage, period summaries, and detailed seller ratings from https://ebay.com.
Parameters2
Runs12
Updated3d ago
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_seller_ratings_summary?
Returns seller profile details, feedback scores, positive percentage, period summaries, and detailed seller ratings from https://ebay.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"seller": {},
"source": "<string>",
"feedback_ratings": [
{}
],
"requested_username": "<string>",
"detailed_seller_ratings": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/aafa1df8-e706-4c79-be78-96d488c0fcd5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "aafa1df8-e706-4c79-be78-96d488c0fcd5",
"variables": {
"username": "cocosprinkles",
"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="aafa1df8-e706-4c79-be78-96d488c0fcd5") — the "get_seller_ratings_summary" function, which returns seller profile details, feedback scores, positive percentage, period summaries, and detailed seller ratings from https://ebay.com.. It takes username (str), timeout_seconds (int). Return the result as structured JSON.