SoonOne MCP server, all 49 APIs as agent tools. See how it works

Power-boat specs and reference

Boat Specs & Data API

The Boat Specs & Data API gives you a curated catalogue of power boats through simple GET endpoints. Browse makes and models, then search by make, model, year, hull/model type, fuel or free text.

Each record carries make, model, length, model type (STERN, OUTBD, PONT), hull material, engine count, horsepower, dry weight, beam, fuel type and year. Read-only and edge-served.

Free tier included, no credit card required. One key works across all 49 APIs.

At a glance
Boats
310+
Response Time
<40ms
Makes
7

Key features

  • List all boat makes
  • List models for a make
  • Search by make, model, year, type, fuel or free text
  • Length, hull, engines, HP, weight, beam, fuel
  • Narrowing-query search with clean 400 errors

Built for

  • Boat pickers and configurators
  • Marine insurance and registration
  • Marketplace filters
  • Dealer tools

Try it

Build the request for your data

Edit the parameters below and see the exact curl command and JSON response you will get. No key required to preview.

GET/v1/search
Open in Playground

Parameters

Request · HTTP
GET /boats/v1/search?make=regal+marine&model=2000 HTTP/1.1
Host: api.apicodex.io
Host: api.apicodex.io
X-Api-Key: YOUR_API_KEY
Response · JSON
200 OK
{
  "count": 1,
  "limit": 20,
  "results": [
    {
      "make": "Regal Marine",
      "model": "2000 ES",
      "length": "20'",
      "model_type": "STERN",
      "hull": "FG",
      "engines": 1,
      "hp": 250,
      "weight_lb": 3400,
      "beam": "8'6\"",
      "fuel_type": "Gasoline",
      "year": 2023
    }
  ]
}

Documentation

Boat Specs & Data API Documentation

The Boat Specs & Data API gives you a curated catalogue of power boats through simple GET endpoints. Browse makes and models, then search by make, model, year, hull/model type, fuel or free text.

Base URL

url
https://api.apicodex.io/boats

Authentication

Create a free key at dash.apicodex.io and send it on every request: an X-Api-Key header, or an ?apikey= query parameter. Calls without a valid key return 401.

headers
GET /v1/search?make=regal%20marine&model=2000
X-Api-Key: YOUR_API_KEY

Request and response

Illustrative values. Confirm current endpoint behavior, quotas, and data freshness in the API documentation before production use.

request · http
GET /v1/search?make=regal%20marine&model=2000 HTTP/1.1
Host: api.apicodex.io
X-Api-Key: YOUR_API_KEY
response · json
{
  "count": 1,
  "limit": 20,
  "results": [
    {
      "make": "Regal Marine",
      "model": "2000 ES",
      "length": "20'",
      "model_type": "STERN",
      "hull": "FG",
      "engines": 1,
      "hp": 250,
      "weight_lb": 3400,
      "beam": "8'6\"",
      "fuel_type": "Gasoline",
      "year": 2023
    }
  ]
}

Code examples

cURL
curl --request GET \
  --url 'https://api.apicodex.io/boats/v1/search?make=regal%20marine&model=2000' \
  --header 'X-Api-Key: YOUR_API_KEY'

Available Endpoints

GET /v1/makes

List all boat makes.

/v1/makes

GET /v1/models

List models for a given make.

/v1/models?make=regal%20marine

GET /v1/search

Search boats. Requires a narrowing query.

/v1/search?make=regal%20marine&model=2000

Request Parameters

Optional parameters

  • make Exact make (case-insensitive).
  • model Partial model match.
  • year Exact model year (1900-2100).
  • type Partial model-type match (e.g. STERN, OUTBD, PONT).
  • fuel Exact fuel type (e.g. Gasoline, Diesel).
  • q Free-text match (3+ chars to qualify as narrowing).
  • limit Max results (1-25, default 20).

Choose the right dataset

When to use Boat Specs & Data API

Best fit

Use it for boat listings, marine marketplaces, and filtering by hull, engine, fuel, or dimensions.

Consider an alternative

Choose Advanced Vehicle API when a single product must cover several vehicle types.

Compare the supported records, quota, and current plan terms in the API catalog.

Pricing

Boat Specs & Data API Pricing

One key, one subscription, all 49 APIs. Start free and upgrade when you grow. No minimums, no lock-in.

This API costs 1 credit per request. Credits are shared across every API on your plan.

Estimate your monthly cost

Drag the slider to match your expected request volume. We will recommend the cheapest plan that covers it.

10,000

Recommended plan

Starter

$29.99 /month

Credits used10,000
Credits included50,000
Cost per 1K requests$0.600
Choose Starter

Free

Free
1,000 credits · ~1,000 requests/mo · 2 rps
  • All 49 APIs included
  • No credit card required
  • Full documentation and examples
Start for free

Starter

Popular
$29.99/month
50,000 credits · ~50,000 requests/mo · 10 rps
  • All 49 APIs included
  • Email support
  • Usage dashboard and analytics
Start with Starter

Pro

$99.99/month
250,000 credits · ~250,000 requests/mo · 25 rps
  • All 49 APIs included
  • Priority support
  • Up to 5 API keys
Start with Pro

Need a different plan?

Tell us about your API, volume, or support requirements.

Contact us

Coming soon · MCP

Use the Boat Specs & Data API from your AI agent

The API Codex MCP server will expose this API, and the other 39, to Claude, Cursor and any MCP client as tools. Same key, same credits, one config entry.

About the MCP server

FAQ

Frequently asked questions

Make, model, length, model type (STERN, OUTBD, PONT), hull material, engine count, horsepower, dry weight, beam, fuel type and year.

Call /boats/v1/search with filters such as make and model. The query must be narrow — a model, a 3+ character q, or at least two filters — or it returns a 400.

A curated sample of roughly 310 power boats across 7 makes, model years 2016-2023. List endpoints return up to 25 rows per call.

Pass ?apikey=YOUR_API_KEY, or send an X-Api-Key header. One key works across every API Codex API.