# Logo API for CRM Integrations

> Enrich contacts and companies with logos automatically. Display polished company logos next to accounts, deals, and contacts in your CRM without manual data entry.

## Integration Steps

1. **Extract domain from email** — Parse the domain from contact email addresses (e.g., `user@spotify.com` → `spotify.com`).
2. **Use as image source** — `img.loadlogo.com/{domain}` works directly in `<img>` tags.
3. **Enrich with brand data** — Call `api.loadlogo.com/describe/{domain}` for company name, colors, description, and social links.
4. **Webhook integration** — Call the API on new contact creation to auto-enrich company records.

## Benefits

- Auto-enrichment from email domains
- Complete brand profiles: name, colors, social links, fonts
- Logos auto-update when brands change
- Works with Salesforce, HubSpot, Pipedrive, and custom CRMs
- Social link discovery for outreach
- Monogram fallbacks for unknown companies

## Code Example

```javascript
function getCompanyFromEmail(email) {
  const domain = email.split("@")[1];
  return {
    logo: `https://img.loadlogo.com/${domain}?size=64`,
    profileUrl: `https://api.loadlogo.com/describe/${domain}`,
  };
}

// Enrich a contact
const contact = { email: "alice@stripe.com" };
const company = getCompanyFromEmail(contact.email);
// company.logo → "https://img.loadlogo.com/stripe.com?size=64"
```

## Related Features

- [Brand Profiles & Colors](/features/brand-profiles.md)
- [Brand Search](/features/brand-search.md)
