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

Make, model, year & type reference

Motorcycle Specs & Data API

The Motorcycle Specs & Data API gives you a curated catalogue of motorcycles and scooters through simple GET endpoints. Browse makes and models, then search by make, model, year, type or free text.

Each record carries make, model, submodel, year, vehicle type (Motorcycle / Scooter) and motorcycle type (e.g. Street Motorcycle, Scooter). Read-only and edge-served for fast responses everywhere.

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

At a glance
Models
340+
Response Time
<40ms
Makes
30

Key features

  • List all motorcycle makes
  • List models for a make
  • Search by make, model, year, type or free text
  • Vehicle type and motorcycle type classification
  • Narrowing-query search with clean 400 errors

Built for

  • Motorcycle pickers and configurators
  • Insurance and registration flows
  • Marketplace filters
  • Rider and dealer apps

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 /motorcycles/v1/search?make=kawasaki&model=ninja 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": "Kawasaki",
      "model": "Ninja 500",
      "submodel": "Ninja 500 ABS SE",
      "year": 2025,
      "vehicle_type": "Motorcycle",
      "motorcycle_type": "Street Motorcycle"
    }
  ]
}

Documentation

Motorcycle Specs & Data API Documentation

The Motorcycle Specs & Data API gives you a curated catalogue of motorcycles and scooters through simple GET endpoints. Browse makes and models, then search by make, model, year, type or free text.

Base URL

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

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=kawasaki&model=ninja
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=kawasaki&model=ninja HTTP/1.1
Host: api.apicodex.io
X-Api-Key: YOUR_API_KEY
response · json
{
  "count": 1,
  "limit": 20,
  "results": [
    {
      "make": "Kawasaki",
      "model": "Ninja 500",
      "submodel": "Ninja 500 ABS SE",
      "year": 2025,
      "vehicle_type": "Motorcycle",
      "motorcycle_type": "Street Motorcycle"
    }
  ]
}

Code examples

cURL
curl --request GET \
  --url 'https://api.apicodex.io/motorcycles/v1/search?make=kawasaki&model=ninja' \
  --header 'X-Api-Key: YOUR_API_KEY'

Available Endpoints

GET /v1/makes

List all motorcycle makes.

/v1/makes

GET /v1/models

List models for a given make.

/v1/models?make=kawasaki

GET /v1/search

Search models. Requires a narrowing query.

/v1/search?make=kawasaki&model=ninja

Request Parameters

Optional parameters

  • make Exact make (case-insensitive).
  • model Partial model match.
  • year Exact model year (1900-2100).
  • type Partial motorcycle-type match (e.g. Scooter, Street Motorcycle).
  • q Free-text match (3+ chars to qualify as narrowing).
  • limit Max results (1-25, default 20).

Choose the right dataset

When to use Motorcycle Specs & Data API

Best fit

Use it for motorcycle and scooter catalogs, fitment tools, and marketplace filters.

Consider an alternative

Choose Advanced Vehicle API when you need more than motorcycle data.

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

Pricing

Motorcycle 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 Motorcycle 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, submodel, year, vehicle type (Motorcycle or Scooter) and motorcycle type such as Street Motorcycle or Scooter.

Call /motorcycles/v1/search with filters like make, model, year or type. The query must be narrow — a model, a 3+ character q, or at least two filters — otherwise it returns a 400.

A curated sample of about 340 models across 30 makes, model years 1903-2025. 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.