Skip to content

LogoHubOpen-source Logo Repository

High-quality SVG logos for your next project

LogoHub

Quick Start

Get started with LogoHub in seconds:

CDN

html
<!-- Direct SVG access -->
<img src="https://logohub.dev/logos/openai.svg" alt="OpenAI" />

<!-- Or use our API -->
<script src="https://cdn.logohub.dev/logohub.min.js"></script>
<script>
  LogoHub.render('openai', { size: 64 });
</script>

NPM

bash
npm install @logohub/react
jsx
import { Logo } from '@logohub/react';

function App() {
  return <Logo name="stripe" size={48} />;
}

API

javascript
// Get logo metadata
fetch('https://api.logohub.dev/v1/logos/anthropic')
  .then(res => res.json())
  .then(logo => console.log(logo));

// Search logos
fetch('https://api.logohub.dev/v1/logos?category=ai&search=openai')
  .then(res => res.json())
  .then(results => console.log(results));

Categories

Our logo collection spans across multiple categories:

  • AI & ML - OpenAI, Anthropic, Hugging Face
  • Fintech - Stripe, PayPal, Coinbase
  • Cloud - DigitalOcean, Cloudflare, Supabase
  • Design - Canva, Framer, Linear
  • Gaming - Unity, Steam, Epic Games
  • And many more...

Released under the MIT License.