search_used_books
abebooks.comReturns used-condition book listings from https://abebooks.com by title, ISBN, keyword or author, with all non-empty listing, seller, price, shipping and availability fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_used_books?
Returns used-condition book listings from https://abebooks.com by title, ISBN, keyword or author, with all non-empty listing, seller, price, shipping and availability fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, search_by, sort_order, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"site": "<string>",
"query": {},
"results": [
{}
],
"condition": "<string>",
"page_size": 0,
"sort_order": "<string>",
"total_pages": 0,
"result_count": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/02db2337-c929-417e-818a-b79f92406cd5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "02db2337-c929-417e-818a-b79f92406cd5",
"variables": {
"query": "Dune",
"search_by": "title",
"sort_order": "lowest_total_price",
"page": 1
}
}'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="02db2337-c929-417e-818a-b79f92406cd5") — the "search_used_books" function, which returns used-condition book listings from https://abebooks.com by title, ISBN, keyword or author, with all non-empty listing, seller, price, shipping and availability fields.. It takes query (str), search_by (str), sort_order (str), page (int). Return the result as structured JSON.