Introduction
Start integrating high-quality automotive logos into your application today.
Quickstart
Getting set up is as easy as calling our image CDN with your API token.
HTML
<img
src="https://motomarks.io/img/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://motomarks.io/img/${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.
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 and the logo loads instantly from 700+ edge locations worldwide, with automatic WebP and AVIF format optimization based on the visitor's browser.