Live
search_sellers_by_name
abebooks.comSearches sellers by name on https://abebooks.com and returns profiles, locations, descriptions, specialty catalogs, associations, inventory links, and policies.
Parameters2
Runs5
Updated1d ago
Operational5 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 search_sellers_by_name?
Searches sellers by name on https://abebooks.com and returns profiles, locations, descriptions, specialty catalogs, associations, inventory links, and policies. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass name, limit and get the result back without maintaining a scraper.
Response
{
"site": "<string>",
"query": "<string>",
"sellers": [
{}
],
"result_count": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/73528c72-040b-419a-bb8e-68330a23c4d0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "73528c72-040b-419a-bb8e-68330a23c4d0",
"variables": {
"name": "Raptis Rare Books",
"limit": 10
}
}'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="73528c72-040b-419a-bb8e-68330a23c4d0") — the "search_sellers_by_name" function, which searches sellers by name on https://abebooks.com and returns profiles, locations, descriptions, specialty catalogs, associations, inventory links, and policies.. It takes name (str), limit (int). Return the result as structured JSON.