JSON API
Programmatic access to brand data and metadata. All requests require the Authorization header.
Authentication
Authenticate requests by including your API key in the Authorization header.
Authorization: Bearer YOUR_SECRET_KEYList Brands
List all available brands.
GET https://api.motomarks.io/brandsExample Response
[
{
"id": "ferrari",
"name": "Ferrari",
"color": "#FF2800"
},
{
"id": "toyota",
"name": "Toyota",
"color": "#EB0A1E"
}
]Get Brand
Retrieve detailed information for a specific brand.
GET https://api.motomarks.io/brands/{id}Parameters
id: The brand identifier (e.g. "ferrari").
Example Response
{
"id": "ferrari",
"name": "Ferrari",
"color": "#FF2800",
"website": "https://www.ferrari.com",
"social": {
"twitter": "https://twitter.com/Ferrari",
"youtube": "https://www.youtube.com/c/FerrariOfficial",
"facebook": "https://www.facebook.com/Ferrari",
"linkedin": "https://www.linkedin.com/company/ferrari/",
"instagram": "https://www.instagram.com/ferrari/"
},
"description": "The Ferrari logo centers on the 'Cavallino Rampante' (prancing horse), a motif originally painted on the fighter plane of Italian World War I ace Francesco Baracca. Enzo Ferrari adopted the symbol in the early 1920s at the suggestion of Baracca's mother; it became associated with his racing cars and was formalized as the brand emblem when Ferrari began producing road cars in 1947. The logo typically pairs the black prancing horse with a yellow shield (a nod to the color of Modena, Enzo Ferrari's birthplace) and often includes the national colors of Italy along the top. Over time the mark has remained highly consistent, becoming one of the most recognized automotive badges in the world while being used across racing, road cars, merchandising and corporate branding.",
"updatedAt": "2025-11-19T00:10:58.031Z"
}