Marketplace
No threads yet
Live

search_new_condition_books

abebooks.com

Returns new-condition book listings from https://abebooks.com by title, ISBN, keyword or author, with all non-empty listing, seller, price, shipping and availability fields.

Parameters4
Runs4
Updated1d ago
Operational4 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_new_condition_books?

Returns new-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/76eab166-7b3e-4ba8-8b75-46d2495dca7a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "76eab166-7b3e-4ba8-8b75-46d2495dca7a",
    "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="76eab166-7b3e-4ba8-8b75-46d2495dca7a") — the "search_new_condition_books" function, which returns new-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.