Marketplace
No threads yet
Live

get_listing_details

equipmenttrader.com

Gets a machinery listing from https://equipmenttrader.com by numeric ad ID and returns its pricing, specifications, seller contact details, location, photos, and available listing metadata.

Parameters1
Runs9
Updated10d ago
Operational9 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?

Gets a machinery listing from https://equipmenttrader.com by numeric ad ID and returns its pricing, specifications, seller contact details, location, photos, and available listing metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ad_id and get the result back without maintaining a scraper.

Response

{
  "ad_id": 0,
  "seller": {},
  "source": "<string>",
  "listing": {},
  "pricing": {},
  "specifications": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9012ca67-dd3e-4835-a4b0-68c76e38ec25/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9012ca67-dd3e-4835-a4b0-68c76e38ec25",
    "variables": {
        "ad_id": 5041154665
    }
}'

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="9012ca67-dd3e-4835-a4b0-68c76e38ec25") — the "get_listing_details" function, which gets a machinery listing from https://equipmenttrader.com by numeric ad ID and returns its pricing, specifications, seller contact details, location, photos, and available listing metadata..

It takes ad_id (int). Return the result as structured JSON.