Discover/Yacht Auctions API
live

Yacht Auctions APIyachtauctions.com

Access National Liquidators' vessel auction inventory via API. List, search, and retrieve details on boats, yachts, and watercraft listings with specs and pricing.

Endpoint health
verified 3d ago
list_recently_listed
search_vessels
list_live_auctions
get_vessel_types
get_vessel_makes
8/8 passing latest checkself-healing
Endpoints
8
Updated
26d ago

What is the Yacht Auctions API?

This API exposes 8 endpoints covering National Liquidators' full vessel auction inventory on yachtauctions.com, including live auctions, featured listings, and recently added boats. The get_vessel_detail endpoint returns per-vessel specs, photos, asking price, contact info, and US state location. list_vessel_listings supports filtering by make, vessel type, live auction status, keyword query, and sort order, returning up to 18 results per page.

Try it
Filter by vessel make slug from get_vessel_makes (e.g. 'sea-ray', 'bayliner').
Zero-based page number. Each page returns up to 18 items.
Free-text keyword to search vessel titles and descriptions.
Sort option slug.
Filter by vessel type slug from get_vessel_types (e.g. 'center-console', 'cruiser').
Set to true to show only live auction listings. Omission shows all listings.
api.parse.bot/scraper/c3da45f2-c2b5-4cee-afa8-0e82c04cff14/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c3da45f2-c2b5-4cee-afa8-0e82c04cff14/list_vessel_listings?page=0&sort_by=date_desc&live_auctions=False' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace yachtauctions-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: National Liquidators vessel auction SDK — browse, search, and inspect vessels."""
from parse_apis.national_liquidators_vessel_api import NationalLiquidators, Sort, VesselNotFound

client = NationalLiquidators()

# Browse available vessel makes to discover filter options
for make in client.makes.list(limit=5):
    print(make.name, make.slug, make.count)

# Search for Sea Ray vessels and get the first result's full details
listing = client.listings.search(query="Sea Ray", limit=1).first()
if listing:
    vessel = listing.details()
    print(vessel.title, vessel.asking_price, vessel.state)
    print(f"Photos: {len(vessel.photos)}, Specs: {list(vessel.specs.keys())}")

# List vessels sorted by price ascending using the Sort enum
for item in client.listings.list(sort_by=Sort.PRICE_ASC, limit=3):
    print(item.title, item.price, item.location)

# Get live auction listings
for auction in client.listings.live_auctions(limit=3):
    print(auction.title, auction.badges, auction.location)

# Handle a missing vessel gracefully
try:
    missing = client.listing(slug="nonexistent-vessel-9999").details()
except VesselNotFound as exc:
    print(f"Vessel not found: {exc.slug}")

print("exercised: makes.list / listings.search / listing.details / listings.list / listings.live_auctions")
All endpoints · 8 totalmissing one? ·

List vessel listings with pagination and filters. Returns up to 18 items per page. Supports filtering by make, vessel type, live auction status, text search, and sorting. Paginates via zero-based page number.

Input
ParamTypeDescription
makestringFilter by vessel make slug from get_vessel_makes (e.g. 'sea-ray', 'bayliner').
pageintegerZero-based page number. Each page returns up to 18 items.
querystringFree-text keyword to search vessel titles and descriptions.
sort_bystringSort option slug.
vessel_typestringFilter by vessel type slug from get_vessel_types (e.g. 'center-console', 'cruiser').
live_auctionsbooleanSet to true to show only live auction listings. Omission shows all listings.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current zero-based page number",
    "count": "integer, number of items returned on this page",
    "items": "array of listing objects with title, url, slug, price, location, badges, and thumbnail"
  },
  "sample": {
    "data": {
      "page": 0,
      "count": 18,
      "items": [
        {
          "url": "https://yachtauctions.com/browse/2019-sea-ray-slx-230-stk-41740/",
          "slug": "2019-sea-ray-slx-230-stk-41740",
          "price": "USD $41,500",
          "title": "2019 Sea Ray SLX 230 – Stk# 41740",
          "badges": [],
          "location": "Located in Florida",
          "thumbnail": "https://yachtauctions.com/wp-content/uploads/2026/05/41740-6-768x576.jpg"
        }
      ]
    },
    "status": "success"
  }
}

About the Yacht Auctions API

Listing and Searching Vessels

The list_vessel_listings endpoint is the primary way to browse inventory. It accepts a zero-based page integer, free-text query string, make slug (sourced from get_vessel_makes), vessel_type slug (sourced from get_vessel_types), and a sort_by option — verified values include date_desc, _price_asc, _wpgb_featured_product_desc, and acf/year_desc. Setting live_auctions to 'true' filters down to only currently active auction listings. Each page returns up to 18 items, each with title, url, slug, price, location, badges, and thumbnail. The search_vessels endpoint provides a direct keyword search matched against vessel titles and descriptions.

Vessel Detail Data

get_vessel_detail takes a vessel slug (formatted as <year>-<make>-<model>-stk-<id>) and returns the full listing: asking_price, description, photos array, contact_email, contact_phone, location_office, state, and a specs object organized by category with key-value pairs for hull, engine, dimensions, and other vessel attributes. If the listing no longer exists, the endpoint returns input_not_found.

Convenience Endpoints and Taxonomy

list_live_auctions and list_featured_listings require no inputs and return the same listing object shape used across all list endpoints. list_recently_listed returns up to 18 listings sorted by date descending — useful for monitoring new inventory as it becomes available. get_vessel_makes and get_vessel_types each return an array with name, slug, and count fields, giving you the full set of valid filter values for list_vessel_listings.

Reliability & maintenanceVerified

The Yacht Auctions API is a managed, monitored endpoint for yachtauctions.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when yachtauctions.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official yachtauctions.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
8/8 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor new vessel inventory by polling list_recently_listed and alerting when target makes appear.
  • Build a vessel comparison tool by pulling specs from multiple get_vessel_detail calls.
  • Track active auction count over time using list_live_auctions response count.
  • Aggregate asking price distributions by vessel type using list_vessel_listings with vessel_type and _price_asc sort.
  • Generate a make-specific inventory digest using get_vessel_makes slugs piped into list_vessel_listings.
  • Display a curated featured listings widget using list_featured_listings thumbnail and price fields.
  • Build a regional vessel search tool by filtering get_vessel_detail results on the state field.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does yachtauctions.com have an official developer API?+
No. National Liquidators does not publish a documented public developer API for yachtauctions.com inventory data.
What does `get_vessel_detail` return in the `specs` object?+
The specs field is an object of named categories — such as hull, engine, and dimensions — each containing key-value pairs for the attributes listed under that category. The exact keys present vary by listing depending on what the seller has provided. The endpoint also returns photos (array of image URLs), asking_price, state, contact_email, contact_phone, location_office, and the full description text.
How does pagination work in `list_vessel_listings`?+
The page parameter is zero-based, so page 0 is the first page. Each page returns at most 18 items. The response includes a count field reflecting how many items were returned on that specific page, not the total inventory count. To walk through all results, increment page until count is less than 18.
Can I retrieve historical sold or completed auction listings?+
Not currently. The API covers active inventory, live auctions, featured listings, and recently added vessels. It does not expose completed or archived auction records. You can fork this API on Parse and revise it to add an endpoint targeting historical or closed listings if that data becomes available on the site.
Are bid amounts or auction end times available in listing results?+
Not currently. Listing items return price, title, location, badges, slug, url, and thumbnail. The detail endpoint returns asking_price but no bid history, current bid amount, or auction countdown data. You can fork this API on Parse and revise it to surface those fields if they appear on individual listing pages.
Page content last updated . Spec covers 8 endpoints from yachtauctions.com.
Related APIs in MarketplaceSee all →
yachtworld.com API
Search and browse thousands of boat listings on YachtWorld by make, class, type, condition, location, and price range. Retrieve detailed specifications, propulsion data, media assets, and broker contact information for any listing.
yachtbuyer.com API
Search and browse thousands of used and new yachts, boats, and tenders with detailed listings and specifications. Stay informed with the latest maritime news and intelligence while discovering top-rated vessels in the market.
boats.com API
Search millions of yacht and boat listings by your preferred criteria, then view detailed specifications, pricing, and direct seller contact information for any boat that interests you. Find your perfect vessel with comprehensive boat data all in one place.
autobidmaster.com API
Search and browse vehicle auction inventory with detailed lot information, filters by make, type, body style, and damage condition, plus discover featured items and auction locations. Find the perfect vehicle by accessing comprehensive inventory data and exploring popular makes and damage types across AutoBidMaster auctions.
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.
autotrader.com API
Search Autotrader.com vehicle listings and access detailed information like pricing, specifications, and VIN data with flexible filtering options. Browse all available vehicle makes and models to refine your search across thousands of listings.
auction.com API
auction.com API
marinetraffic.com API
Track maritime vessels in real-time by searching for ships by name, MMSI, or IMO number, viewing their current positions and navigational status, and accessing detailed specifications and photos. Filter vessels by type to get the maritime intelligence you need for shipping, logistics, or maritime awareness.