search_listings
abebooks.comReturns detailed AbeBooks listings from https://abebooks.com by keyword, author, title, or ISBN, including seller, condition, price, shipping, images, and availability.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_listings?
Returns detailed AbeBooks listings from https://abebooks.com by keyword, author, title, or ISBN, including seller, condition, price, shipping, images, and availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, search_by, condition, 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/72570541-8591-4e5b-b27a-5aaa16b20638/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "72570541-8591-4e5b-b27a-5aaa16b20638",
"variables": {
"query": "Dune",
"search_by": "keyword",
"condition": "any",
"sort_order": "relevance",
"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="72570541-8591-4e5b-b27a-5aaa16b20638") — the "search_listings" function, which returns detailed AbeBooks listings from https://abebooks.com by keyword, author, title, or ISBN, including seller, condition, price, shipping, images, and availability.. It takes query (str), search_by (str), condition (str), sort_order (str), page (int). Return the result as structured JSON.