Live
get_seller_profile
ebay.caReturns seller profile data from https://ebay.ca by username, including feedback, items sold, followers, identity, description, and available account metadata.
Parameters1
Runs14
Updated3d ago
Operational14 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_seller_profile?
Returns seller profile data from https://ebay.ca by username, including feedback, items sold, followers, identity, description, and available account metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username and get the result back without maintaining a scraper.
Response
{
"location": "<string>",
"username": "<string>",
"items_sold": "<string>",
"store_slug": "<string>",
"description": "<string>",
"active_items": "<string>",
"display_name": "<string>",
"member_since": "<string>",
"profile_type": "<string>",
"canonical_url": "<string>",
"feedback_count": "<string>",
"follower_count": "<string>",
"top_rated_seller": true,
"profile_image_url": "<string>",
"feedback_percentage": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/6bff164b-173d-4d4e-a3e0-acaf88299a25/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6bff164b-173d-4d4e-a3e0-acaf88299a25",
"variables": {
"username": "refurbit_ca"
}
}'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="6bff164b-173d-4d4e-a3e0-acaf88299a25") — the "get_seller_profile" function, which returns seller profile data from https://ebay.ca by username, including feedback, items sold, followers, identity, description, and available account metadata.. It takes username (str). Return the result as structured JSON.