machineseeker.com APImachineseeker.com ↗
Search, filter, and retrieve used industrial machinery listings from Machineseeker.com. Access prices, specs, seller info, and similar listings via 4 endpoints.
curl -X GET 'https://api.parse.bot/scraper/5954b2c9-33bb-4d0b-af2f-af148ca06a16/search_listings?page=1&query=CNC+lathe' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for machinery listings by keyword with optional filters and pagination. Returns a paginated list of matching listings with basic details.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| query | string | Search keyword (e.g. 'CNC lathe', 'excavator'). Omitting returns all listings. |
| category_ids | string | Category ID to filter by (e.g. '2' for Metal working machinery). Values available from get_search_filters. |
| manufacturers | string | Manufacturer name to filter by (e.g. 'Mazak'). Values available from get_search_filters. |
{
"type": "object",
"fields": {
"page": "integer current page number",
"listings": "array of listing objects with listing_id, title, url, price, location, thumbnail, details_snippet",
"total_results": "string with total result count text"
},
"sample": {
"data": {
"page": 1,
"listings": [
{
"url": "https://www.machineseeker.com/cnc+lathe+hyundai+wia-l200y/i-20798242",
"price": "",
"title": "CNC turning and milling centerCnc lathe Hyundai WIAL200Y",
"location": "Alblasserdam 5,871 km",
"thumbnail": "https://cdn.machineseeker.com/data/listing/img/vga/ms/18/33/20798242-01.jpg?v=1766134402",
"listing_id": "20798242",
"details_snippet": {
"year": "2012",
"condition": "used"
}
}
],
"total_results": ""
},
"status": "success"
}
}About the machineseeker.com API
The Machineseeker.com API provides access to used industrial machinery listings across 4 endpoints, covering search, full listing detail, similar listings, and searchable filter facets. The search_listings endpoint returns paginated results with pricing, location, and thumbnails, while get_listing_detail exposes machine specifications, seller information, and full image arrays for any individual listing.
Search and Filter Listings
The search_listings endpoint accepts a query string (e.g. 'CNC lathe', 'excavator') along with optional category_ids and manufacturers parameters to narrow results. Each page of results returns an array of listing objects containing listing_id, title, url, price, location, thumbnail, and details_snippet. The total_results field provides the result count as text. To discover valid values for category_ids and manufacturers, call get_search_filters first — it returns facet options with counts for any given query.
Listing Detail and Similar Equipment
Passing a listing_id from search results to get_listing_detail returns the full record: a specifications key-value object with machine-specific attributes, a description text field, an images array of URLs, the full price string with currency, and a seller object with seller information. The optional slug parameter improves routing but is not required. The get_similar_listings endpoint accepts the same listing_id and returns an array of related listings, each with title, price, location, thumbnail, url, and a details_snippet object containing year and condition when available.
Filter Facets
get_search_filters returns six filter groups — category, location, condition, machine_details, type_of_listing, and details — each containing a heading and an options array with counts. Calling it with a query parameter returns counts scoped to that search context; omitting the query returns global facet counts. This makes it the right first call when building dynamic filter interfaces or discovering which manufacturer or category names are valid inputs for search_listings.
- Aggregating used CNC machine listings with prices and locations for a procurement comparison tool
- Monitoring price changes for specific machinery types by periodically querying
search_listingswith a category filter - Building a category browser using
get_search_filtersto surface available machine types and their listing counts - Enriching an internal asset database with full specifications and images from
get_listing_detail - Powering a 'related equipment' recommendation widget using
get_similar_listingsresults - Filtering listings by manufacturer and condition to source second-hand equipment from verified sellers
- Extracting seller contact and location data for industrial equipment dealers from listing detail records
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Machineseeker have an official developer API?+
What does `get_search_filters` return, and how should I use it with `search_listings`?+
get_search_filters returns six facet groups: category, location, condition, machine_details, type_of_listing, and details. Each group has a heading and an options array with counts. When you pass a query parameter, counts reflect that search context. Use the option values from category and machine_details as category_ids and manufacturers inputs in search_listings to ensure you're passing values the source recognizes.Does pagination work across all search results?+
search_listings accepts a page integer for pagination and returns the current page number and a total_results string. The total is returned as text rather than a parsed integer, so your code should handle string-to-number conversion. Very large result sets may have practical page depth limits depending on how the source structures deep pagination.Does the API return seller contact details such as phone numbers or email addresses?+
get_listing_detail endpoint returns a seller object with seller information, but the specific fields within that object (such as phone or email) depend on what the listing publicly exposes. Direct contact fields are not guaranteed for every listing. You can fork this API on Parse and revise it to add any additional seller fields that appear in the source data.Can I filter search results by price range or year of manufacture?+
search_listings endpoint supports filtering by category_ids and manufacturers only. Price range and year filters are not directly available as input parameters. You can fork this API on Parse and revise it to add those filter parameters if they are surfaced in the get_search_filters detail options.