# Logo API for SaaS Dashboards

> Display company logos next to integrations, customers, and partners in your SaaS product. LoadLogo makes it simple to show polished brand assets without manual uploads.

## Integration Steps

1. **Use logo URLs directly** — Point `<img>` tags at `img.loadlogo.com/{domain}` with the customer's domain.
2. **Extract domains** — Use the customer's website or email domain as the lookup key.
3. **Customize display** — Use `?size=`, `?format=`, and `?style=` parameters to match your UI.
4. **Enrich with brand data** — Call `api.loadlogo.com/describe/{domain}` for colors, description, and social links.

## Benefits

- Auto-updating logos — always shows the latest brand assets
- Consistent sizing across all company logos
- Fast delivery from 300+ edge locations
- Monogram fallbacks for companies without logos
- Brand colors available for UI theming
- Works with any frontend framework

## Code Example

```jsx
function IntegrationCard({ name, domain }) {
  return (
    <div className="flex items-center gap-3 p-4 border rounded-lg">
      <img
        src={`https://img.loadlogo.com/${domain}?size=48&format=webp`}
        alt={name}
        width={48}
        height={48}
        className="rounded"
      />
      <div>
        <p className="font-medium">{name}</p>
        <p className="text-sm text-gray-500">{domain}</p>
      </div>
    </div>
  );
}
```

## Related Features

- [Domain Logo Lookup](/features/domain-lookup.md)
- [Brand Profiles & Colors](/features/brand-profiles.md)
