Marketplace
No threads yet
Live

get_listing_details

abebooks.com

Retrieves a specific book listing from https://abebooks.com with bibliographic data, price, condition, availability, images, seller details, policies, and shipping rates; reports stale input when unavailable.

Parameters1
Runs5
Updated1d ago
Operational5 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 get_listing_details?

Retrieves a specific book listing from https://abebooks.com with bibliographic data, price, condition, availability, images, seller details, policies, and shipping rates; reports stale input when unavailable. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_id and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "status": "<string>",
  "listing": {},
  "listing_id": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0f1c6a30-d39f-4c84-9447-8f54226b7c81/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0f1c6a30-d39f-4c84-9447-8f54226b7c81",
    "variables": {
        "listing_id": "32411124418"
    }
}'

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="0f1c6a30-d39f-4c84-9447-8f54226b7c81") — the "get_listing_details" function, which retrieves a specific book listing from https://abebooks.com with bibliographic data, price, condition, availability, images, seller details, policies, and shipping rates; reports stale input when unavailable..

It takes listing_id (str). Return the result as structured JSON.