Marketplace
No threads yet
Live

search_listings_by_isbn

abebooks.com

Returns detailed AbeBooks listings matching an ISBN-10 or ISBN-13 from https://abebooks.com, including seller, condition, price, shipping, images, and availability.

Parameters3
Runs7
Updated1d ago
Operational7 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_listings_by_isbn?

Returns detailed AbeBooks listings matching an ISBN-10 or ISBN-13 from https://abebooks.com, 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 isbn, page, sort_order and get the result back without maintaining a scraper.

Response

{
  "isbn": "<string>",
  "page": 0,
  "site": "<string>",
  "results": [
    {}
  ],
  "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/68882870-234b-4deb-a719-cb2de882a9b4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "68882870-234b-4deb-a719-cb2de882a9b4",
    "variables": {
        "isbn": "9780441172719",
        "page": 1,
        "sort_order": "lowest_total_price"
    }
}'

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="68882870-234b-4deb-a719-cb2de882a9b4") — the "search_listings_by_isbn" function, which returns detailed AbeBooks listings matching an ISBN-10 or ISBN-13 from https://abebooks.com, including seller, condition, price, shipping, images, and availability..

It takes isbn (str), page (int), sort_order (str). Return the result as structured JSON.