Add your first car logo

Use one image URL for a production-ready logo or call the JSON API for structured automotive brand data.

Automotive focused

A published library built around automotive brands and developer use cases.

Predictable delivery

Use the same CDN URL structure across brands, variants, sizes, and formats.

Normalized outputs

Request PNG or WebP in five sizes, as a full logo, badge, or wordmark where available.

Quickstart

Add your publishable API key to an image URL. Optional parameters control the output.

index.html
<img
  src="https://motomarks.io/img/toyota?token=YOUR_PUBLISHABLE_KEY"
  alt="Toyota logo"
/>
car-brand-logo.tsx
import Image from "next/image";

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

Use cases

Automotive marketplaces

Put recognizable brand logos beside listings, filters, and search results.

Car reviews & media

Use consistent logos across review cards, comparison pages, and article headers.

Service centers

Show the manufacturers a location supports without managing separate files.

Finance & insurance

Identify vehicle makes consistently across quotes, applications, and policy views.

How do I add car logos to my website?

Add any car brand logo to your website with a single HTML image tag pointing to the Motomarks CDN. Include your publishable API token as a query parameter, then choose the logo type, size, PNG or WebP format, and aspect behavior when the default output is not the right fit.