Quikturnv1.0
Integration Examples

React Integration

Direct embeds with a publishable key (no backend proxy needed)

Use your publishable key directly—no API route required.

Quick Embed (After)

function CompanyLogo({ domain, size = 64, theme }) {
  const token = process.env.NEXT_PUBLIC_QUIKTURN_PUBLISHABLE_KEY;
  const params = new URLSearchParams({ token, size });
  if (theme) params.set('theme', theme);

  return (
    <img
      src={`https://logos.getquikturn.io/${domain}?${params.toString()}`}
      alt={`${domain} logo`}
      loading="lazy"
    />
  );
}

Usage:

<CompanyLogo domain="stripe.com" size={128} />
<CompanyLogo domain="nike.com" theme="dark" />

Optional tweaks: add &greyscale=true when you want desaturated logos.

On this page