Marketplace
No threads yet
Live

search_listings

equipmenttrader.com

Searches https://equipmenttrader.com for industrial machinery listings and returns paginated listing summaries with pricing, location, seller, and equipment fields. Optional marketplace filters narrow the inventory.

Parameters12
Runs15
Updated10d ago
Degraded15 runs · 93.3% 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?

Searches https://equipmenttrader.com for industrial machinery listings and returns paginated listing summaries with pricing, location, seller, and equipment fields. Optional marketplace filters narrow the inventory. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, keyword, make, category, condition, state_code, min_price, max_price, min_year, max_year, zip_code, radius and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "source": "<string>",
  "listings": [
    {}
  ],
  "page_size": 0,
  "total_pages": 0,
  "total_results": 0,
  "applied_filters": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/bf3fb1f2-422a-417b-8593-e632e8a29a4d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "bf3fb1f2-422a-417b-8593-e632e8a29a4d",
    "variables": {
        "page": 1,
        "keyword": "",
        "make": "",
        "category": "",
        "condition": "",
        "state_code": "",
        "min_price": 0,
        "max_price": 0,
        "min_year": 0,
        "max_year": 0,
        "zip_code": "",
        "radius": 10000
    }
}'

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="bf3fb1f2-422a-417b-8593-e632e8a29a4d") — the "search_listings" function, which searches https://equipmenttrader.com for industrial machinery listings and returns paginated listing summaries with pricing, location, seller, and equipment fields. Optional marketplace filters narrow the inventory..

It takes page (int), keyword (str), make (str), category (str), condition (str), state_code (str), min_price (int), max_price (int), min_year (int), max_year (int), zip_code (str), radius (int). Return the result as structured JSON.