Accurate boat specifications and marine data for developers. Power your marketplace, website builder, or app with Marinebase.
Marinebase provides a unified REST API to access comprehensive sailboat specifications. No more scraping outdated websites or manual data entry. We maintain the database so you can focus on building great products.
One source for all marine technical data.
Clean JSON responses and clear documentation.
Built to handle thousands of requests per second.
Verified specs from manufacturers and experts.
Our API is designed to power the next generation of marine software.
Auto-populate boat listings with technical specs to improve listing quality and SEO.
Offer boat comparison tools and technical spec widgets to your marine clients.
Build navigation, maintenance, or racing apps with accurate boat dimensions and data.
See how you can leverage Marinebase data to build intelligent marine tools.
Calculate dockage costs instantly using accurate LOA and Beam data from our API.
Predict annual maintenance budgets based on displacement and boat age.
Automate risk assessment by pulling technical specs directly into your quote engine.
Estimate resale value by comparing specs with historical market data.
Fetch the loa (Length Overall) and beam for any boat model to calculate marina fees, winter storage, or transport costs with 100% accuracy.
const boat = await marinebase.getBoat('sun-fast-3300');
const ratePerMeter = 45.00;
const monthlyFee = boat.specs.loa * ratePerMeter;
// Result: €454.95 / month
Simple, predictable, and powerful. Integrate Marinebase into your stack in minutes.
/v1/sailboats/search
Search for sailboats by name, manufacturer, or year.
{
"data": [
{
"id": "sb_123",
"name": "Sun Fast 3300",
"manufacturer": "Jeanneau",
"year": 2019,
"slug": "jeanneau-sun-fast-3300"
}
],
"meta": { "total": 1240 }
}
/v1/sailboats/{slug}
Retrieve detailed specifications for a specific boat.
{
"id": "sb_123",
"name": "Sun Fast 3300",
"specs": {
"loa": "10.11 m",
"beam": "3.40 m",
"draft": "1.95 m",
"displacement": "3500 kg",
"sail_area": "60 m²"
}
}
/v1/specs/fields
List all available specification fields and their units.
{
"fields": [
{ "key": "loa", "label": "Length Overall", "unit": "m" },
{ "key": "beam", "label": "Beam", "unit": "m" },
{ "key": "draft", "label": "Draft", "unit": "m" }
]
}
/v1/sailboats/compare
Compare multiple sailboats side-by-side.
{
"comparison": {
"fields": ["loa", "beam", "displacement"],
"results": [
{ "id": "sb_1", "values": [10.1, 3.4, 3500] },
{ "id": "sb_2", "values": [10.5, 3.5, 3800] }
]
}
}
We are currently in private beta. Request access today to get your API key and start building.
Request Access Now