Motorcycles API
The Motorcycles API provides highly-detailed technical data on tens of thousands of different motorcycle models from hundreds of manufacturers.
Available endpoints:
- /v1/motorcycles - Search motorcycles by make, model, and year
- /v1/motorcyclemakes - Get list of all motorcycle manufacturers
- /v1/motorcyclemodels - Get list of all models for a specific manufacturer
From 6,281 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 259ms | 299ms | 306ms | 549ms | 1039ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v1/motorcycles GET
https://api.api-ninjas.com/v1/motorcycles
Returns up to 30 motorcycle results matching the input name parameters. For searches that yield more than 30 results, please use the offset parameter.
Parameters
makeoptionalName of manufacturer/brand. Supports partial matching (e.g.
Harleywill matchHarley-Davidson).modeloptionalName of motorcycle model. Supports partial matching (e.g.
Ninjawill matchNinja 650).yearoptionalRelease year of motorcycle model. Must be in the form of
YYYY(e.g.2022).offsetoptional premium onlyNumber of results to offset for pagination. Default is
0.
Either make or model must be set.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/motorcycles?make=Kawasaki&model=NinjaHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/motorcycles?make=kawasaki&model=ninja" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.
/v1/motorcyclemakes GET
Business, Professional, or annual subscriptions only
https://api.api-ninjas.com/v1/motorcyclemakes
Returns a list of all motorcycle makes (manufacturers).
Parameters
None
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
Returns an array of strings, where each string is a motorcycle manufacturer name.
Sample Request
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/motorcyclemakesHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
/v1/motorcyclemodels GET
Business, Professional, or annual subscriptions only
https://api.api-ninjas.com/v1/motorcyclemodels
Returns a list of all motorcycle models for a given make (manufacturer).
Parameters
makerequiredVehicle manufacturer (e.g.
kawasaki).
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
Returns an array of strings, where each string is a motorcycle model name.
Sample Request
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/motorcyclemodels?make=kawasakiHeaders
X-Api-KeyLog in or sign up to get your API Key