> ## Documentation Index
> Fetch the complete documentation index at: https://docs.permutive.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Catalog

> Browse our comprehensive catalog of survey platform integrations.

export const BadgeRowCenter = ({label, children}) => {
  return <div style={{
    display: 'flex',
    justifyContent: 'space-between',
    alignItems: 'center',
    marginBottom: '0.5rem'
  }}>
      <span style={{
    fontSize: '0.625rem',
    color: '#6b7280',
    textTransform: 'uppercase',
    fontWeight: '500',
    letterSpacing: '0.05em'
  }}>
        {label}
      </span>
      {children}
    </div>;
};

export const BadgeRow = ({label, children}) => {
  return <div style={{
    display: 'flex',
    justifyContent: 'space-between',
    alignItems: 'flex-start',
    marginBottom: '0.5rem'
  }}>
      <span style={{
    fontSize: '0.625rem',
    color: '#6b7280',
    textTransform: 'uppercase',
    fontWeight: '500',
    letterSpacing: '0.05em'
  }}>
        {label}
      </span>
      {children}
    </div>;
};

export const BadgeContainer = ({children}) => {
  return <div style={{
    display: 'flex',
    gap: '0.25rem',
    flexWrap: 'wrap',
    justifyContent: 'flex-end',
    minWidth: '0',
    flex: '1'
  }}>
      {children}
    </div>;
};

export const CapabilityBadge = ({capability}) => {
  const getBadgeStyle = capability => {
    switch (capability) {
      case 'Event Collection':
        return {
          background: '#EFDFC8',
          color: '#1A1A1A'
        };
        --clay;
      case 'Cohort Activation':
        return {
          background: '#EFDFC8',
          color: '#1A1A1A'
        };
        --clay;
      case 'Campaign Optimization':
        return {
          background: '#EFDFC8',
          color: '#1A1A1A'
        };
        --clay;
      case 'Identity Signal':
        return {
          background: '#EFDFC8',
          color: '#1A1A1A'
        };
        --clay;
      case 'Contextual Signal':
        return {
          background: '#EFDFC8',
          color: '#1A1A1A'
        };
        --clay;
      case 'Connectivity':
        return {
          background: '#EFDFC8',
          color: '#1A1A1A'
        };
        --clay;
      case 'Routing':
        return {
          background: '#EFDFC8',
          color: '#1A1A1A'
        };
        --clay;
      case 'Data Collaboration':
        return {
          background: '#EFDFC8',
          color: '#1A1A1A'
        };
        --clay;
      default:
        return {
          background: '#A7B3D9',
          color: '#1A1A1A'
        };
        --haze;
    }
  };
  const style = getBadgeStyle(capability);
  return <span style={{
    display: 'inline-block',
    padding: '0.125rem 0.375rem',
    borderRadius: '0.25rem',
    fontSize: '0.625rem',
    background: style.background,
    color: style.color,
    fontWeight: '500',
    whiteSpace: 'nowrap'
  }}>
      {capability}
    </span>;
};

export const EnvironmentBadge = ({environment}) => {
  const getBadgeStyle = environment => {
    switch (environment) {
      case 'Web':
        return {
          background: '#F9C1A8',
          color: '#1A1A1A'
        };
        --peach;
      case 'iOS':
        return {
          background: '#F9C1A8',
          color: '#1A1A1A'
        };
        --peach;
      case 'Android':
        return {
          background: '#F9C1A8',
          color: '#1A1A1A'
        };
        --peach;
      case 'CTV':
        return {
          background: '#F9C1A8',
          color: '#1A1A1A'
        };
        --peach;
      case 'API Direct':
        return {
          background: '#F9C1A8',
          color: '#1A1A1A'
        };
        --peach;
      default:
        return {
          background: '#A7B3D9',
          color: '#1A1A1A'
        };
        --haze;
    }
  };
  const style = getBadgeStyle(environment);
  return <span style={{
    display: 'inline-block',
    padding: '0.125rem 0.375rem',
    borderRadius: '0.25rem',
    fontSize: '0.625rem',
    background: style.background,
    color: style.color,
    fontWeight: '500',
    whiteSpace: 'nowrap'
  }}>
      {environment}
    </span>;
};

export const DirectionBadge = ({direction}) => {
  const getBadgeStyle = direction => {
    switch (direction) {
      case 'Bidirectional':
        return {
          background: '#FA8784',
          color: '#1A1A1A'
        };
        --tomato;
      case 'Destination':
        return {
          background: '#FA8784',
          color: '#1A1A1A'
        };
        --tomato;
      case 'Source':
        return {
          background: '#FA8784',
          color: '#1A1A1A'
        };
        --tomato;
      default:
        return {
          background: '#A7B3D9',
          color: '#1A1A1A'
        };
        --haze;
    }
  };
  const style = getBadgeStyle(direction);
  return <span style={{
    display: 'inline-block',
    padding: '0.125rem 0.375rem',
    borderRadius: '0.25rem',
    fontSize: '0.625rem',
    background: style.background,
    color: style.color,
    fontWeight: '500'
  }}>
      {direction}
    </span>;
};

# Survey Integrations

<CardGroup cols={2}>
  <Card title="" href="/integrations/survey/collective-audience">
    <div style={{ display: 'flex', alignItems: 'center', marginBottom: '1rem' }}>
      <div style={{ width: '32px', height: '32px', marginRight: '0.75rem', display: 'flex', alignItems: 'center', justifyContent: 'center', flexShrink: 0 }}>
        <img src="https://mintcdn.com/permutive/pNhz39ducTVcQczh/images/integrations/logos/collective-audience.svg?fit=max&auto=format&n=pNhz39ducTVcQczh&q=85&s=2cbec50f2462ab1df56f8a2f7c50c8c8" alt="Collective Audience" style={{ maxWidth: '32px', maxHeight: '32px', display: 'block' }} width="587" height="642" data-path="images/integrations/logos/collective-audience.svg" />
      </div>

      <h3 style={{ margin: 0, fontSize: '1.125rem', fontWeight: '600' }}>Collective Audience</h3>
    </div>

    <div style={{ marginBottom: '1rem' }}>
      <BadgeRowCenter label="Direction">
        <DirectionBadge direction="Source" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Environment">
        <EnvironmentBadge environment="Web" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Capability">
        <CapabilityBadge capability="Event Collection" />
      </BadgeRowCenter>
    </div>

    <p style={{ margin: 0, fontSize: '0.875rem', color: '#6b7280', lineHeight: '1.5' }}>
      Collective Audience (formerly BeOp) enables publishers to collect first-party survey data and optionally retarget Permutive cohorts within their survey platform.
    </p>
  </Card>

  <Card title="" href="/integrations/survey/apester">
    <div style={{ display: 'flex', alignItems: 'center', marginBottom: '1rem' }}>
      <div style={{ width: '32px', height: '32px', marginRight: '0.75rem', display: 'flex', alignItems: 'center', justifyContent: 'center', flexShrink: 0 }}>
        <img src="https://mintcdn.com/permutive/Juzd3YB8HgaWRAEF/images/integrations/logos/apester.png?fit=max&auto=format&n=Juzd3YB8HgaWRAEF&q=85&s=74b62877d962cbbdb7785d8654d3783b" alt="Apester" style={{ maxWidth: '32px', maxHeight: '32px', display: 'block' }} width="60" height="61" data-path="images/integrations/logos/apester.png" />
      </div>

      <h3 style={{ margin: 0, fontSize: '1.125rem', fontWeight: '600' }}>Apester</h3>
    </div>

    <div style={{ marginBottom: '1rem' }}>
      <BadgeRowCenter label="Direction">
        <DirectionBadge direction="Source" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Environment">
        <EnvironmentBadge environment="Web" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Capability">
        <CapabilityBadge capability="Event Collection" />
      </BadgeRowCenter>
    </div>

    <p style={{ margin: 0, fontSize: '0.875rem', color: '#6b7280', lineHeight: '1.5' }}>
      Apester enables publishers to collect first-party survey data through multiple-choice surveys on their website.
    </p>
  </Card>

  <Card title="" href="/integrations/survey/brandmetrics">
    <div style={{ display: 'flex', alignItems: 'center', marginBottom: '1rem' }}>
      <div style={{ width: '32px', height: '32px', marginRight: '0.75rem', display: 'flex', alignItems: 'center', justifyContent: 'center', flexShrink: 0 }}>
        <img src="https://mintcdn.com/permutive/Juzd3YB8HgaWRAEF/images/integrations/logos/brandmetrics.png?fit=max&auto=format&n=Juzd3YB8HgaWRAEF&q=85&s=a31b2e3095a62a5061715f12b6e0c8c7" alt="Brand Metrics" style={{ maxWidth: '32px', maxHeight: '32px', display: 'block', background: 'white', borderRadius: '4px' }} width="96" height="96" data-path="images/integrations/logos/brandmetrics.png" />
      </div>

      <h3 style={{ margin: 0, fontSize: '1.125rem', fontWeight: '600' }}>Brand Metrics</h3>
    </div>

    <div style={{ marginBottom: '1rem' }}>
      <BadgeRowCenter label="Direction">
        <DirectionBadge direction="Source" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Environment">
        <EnvironmentBadge environment="Web" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Capability">
        <CapabilityBadge capability="Event Collection" />
      </BadgeRowCenter>
    </div>

    <p style={{ margin: 0, fontSize: '0.875rem', color: '#6b7280', lineHeight: '1.5' }}>
      Brand Metrics enables publishers to measure brand lift delivered by digital ad campaigns through automated survey measurement at scale.
    </p>
  </Card>

  <Card title="" href="/integrations/survey/opinary">
    <div style={{ display: 'flex', alignItems: 'center', marginBottom: '1rem' }}>
      <div style={{ width: '32px', height: '32px', marginRight: '0.75rem', display: 'flex', alignItems: 'center', justifyContent: 'center', flexShrink: 0 }}>
        <img src="https://mintcdn.com/permutive/pNhz39ducTVcQczh/images/integrations/logos/opinary.svg?fit=max&auto=format&n=pNhz39ducTVcQczh&q=85&s=43c2e442c35b4ff0bdff5549c1002c36" alt="Opinary" style={{ maxWidth: '32px', maxHeight: '32px', display: 'block' }} width="142" height="142" data-path="images/integrations/logos/opinary.svg" />
      </div>

      <h3 style={{ margin: 0, fontSize: '1.125rem', fontWeight: '600' }}>Opinary</h3>
    </div>

    <div style={{ marginBottom: '1rem' }}>
      <BadgeRowCenter label="Direction">
        <DirectionBadge direction="Source" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Environment">
        <EnvironmentBadge environment="Web" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Capability">
        <CapabilityBadge capability="Event Collection" />
      </BadgeRowCenter>
    </div>

    <p style={{ margin: 0, fontSize: '0.875rem', color: '#6b7280', lineHeight: '1.5' }}>
      Opinary helps publishers embed interactive opinion tools that boost engagement and enable contextual ad targeting.
    </p>
  </Card>

  <Card title="" href="/integrations/survey/qualifio">
    <div style={{ display: 'flex', alignItems: 'center', marginBottom: '1rem' }}>
      <div style={{ width: '32px', height: '32px', marginRight: '0.75rem', display: 'flex', alignItems: 'center', justifyContent: 'center', flexShrink: 0 }}>
        <img src="https://mintcdn.com/permutive/Juzd3YB8HgaWRAEF/images/integrations/logos/qualifio.png?fit=max&auto=format&n=Juzd3YB8HgaWRAEF&q=85&s=2abba6768141771ee4333bcf68fbf818" alt="Qualifio" style={{ maxWidth: '32px', maxHeight: '32px', display: 'block' }} width="32" height="32" data-path="images/integrations/logos/qualifio.png" />
      </div>

      <h3 style={{ margin: 0, fontSize: '1.125rem', fontWeight: '600' }}>Qualifio</h3>
    </div>

    <div style={{ marginBottom: '1rem' }}>
      <BadgeRowCenter label="Direction">
        <DirectionBadge direction="Source" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Environment">
        <EnvironmentBadge environment="Web" />
      </BadgeRowCenter>

      <BadgeRowCenter label="Capability">
        <CapabilityBadge capability="Event Collection" />
      </BadgeRowCenter>
    </div>

    <p style={{ margin: 0, fontSize: '0.875rem', color: '#6b7280', lineHeight: '1.5' }}>
      Qualifio allows publishers to create interactive experiences (polls, contests) to boost engagement and collect first-party data.
    </p>
  </Card>
</CardGroup>
