Documentation

Motomarks is the comprehensive automotive logo API that lets you enrich any application with high-quality car brand logos. Eliminate manual logo management and boost user trust with professional branding.

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_KEY
List Brands
Search or list all available brands.
GET https://api.motomarks.io/v1/brands?q={query}&limit={limit}

Parameters

  • q (optional): Search query for brand names.
  • limit (optional): Number of results to return (max 100).

Example Response

{
  "data": [
    {
      "id": "brand_123",
      "name": "Toyota",
      "slug": "toyota",
      "website": "toyota.com",
      "primaryColor": "#EB0A1E"
    }
  ],
  "count": 1
}
Get Brand
Retrieve detailed information for a specific brand.
GET https://api.motomarks.io/v1/brands/{slug}

Parameters

  • slug: The URL-friendly brand identifier.