get_seller_feedback_profile
ebay.itRetrieves the public feedback profile for an eBay Italy seller from https://ebay.it by username. Returns feedback score, positive feedback percentage, member-since date, country, and other available public seller profile signals.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_seller_feedback_profile?
Retrieves the public feedback profile for an eBay Italy seller from https://ebay.it by username. Returns feedback score, positive feedback percentage, member-since date, country, and other available public seller profile signals. 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
{
"status": "<string>",
"message": "<string>",
"profile": {
"badges": [
"<string>"
],
"country": "<string>",
"username": "<string>",
"store_url": "<string>",
"profile_url": "<string>",
"seller_type": "<string>",
"member_since": "<string>",
"feedback_score": 0,
"feedback_score_text": "<string>",
"is_top_rated_seller": true,
"positive_feedback_percent": 0,
"positive_feedback_summary": "<string>",
"negative_feedback_count_12m": 0,
"positive_feedback_count_12m": 0
},
"source_url": "<string>",
"requested_username": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b64c0e30-ea2f-4cdb-ad36-0dfdfab367a7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b64c0e30-ea2f-4cdb-ad36-0dfdfab367a7",
"variables": {
"username": "europhone28",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="b64c0e30-ea2f-4cdb-ad36-0dfdfab367a7") — the "get_seller_feedback_profile" function, which retrieves the public feedback profile for an eBay Italy seller from https://ebay.it by username. Returns feedback score, positive feedback percentage, member-since date, country, and other available public seller profile signals.. It takes username (str), timeout_seconds (int). Return the result as structured JSON.