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.

Introduction

Start integrating high-quality automotive logos into your application today.

🚗 Automotive Focused
Specialized database of car manufacturers, from major brands to niche makes.
⚡️ Edge Caching
Global CDN delivery ensures logos load instantly for users anywhere.
🎨 Multiple Formats
Access logos in SVG, PNG, and various sizes/types (badge, wordmark).

Quickstart

Getting set up is as easy as calling our image CDN with your API token.

HTML

<img
  src="https://img.motomarks.io/toyota?token=YOUR_PUBLISHABLE_KEY"
  alt="Toyota logo"
/>

React / Next.js

import Image from "next/image";

function CarBrandLogo({ slug }: { slug: string }) {
  return (
    <Image
      src={`https://img.motomarks.io/${slug}?token=${process.env.NEXT_PUBLIC_MOTOMARKS_KEY}`}
      alt={`${slug} logo`}
      width={128}
      height={128}
    />
  );
}

Use Cases

Automotive Marketplaces

Display brand logos next to listings for professional visual identification.

Car Reviews & Media

Create authoritative headers and review cards with accurate brand assets.

Service Centers

Showcase serviced brands visually to build trust with customers.

Finance & Insurance

Visual identification for auto loans and insurance policy documents.