Back to ORAVYS

Branding & Attribution Kit

Everything partners and integrators need to display "Powered by ORAVYS" correctly, on the right tier, with the right colors. Copy, paste, ship.

Attribution rules by tier

Tier Attribution Notes
Free Required Visible "Powered by ORAVYS" + link to oravys.com
Core / Advanced Required Same as free tier
Insurance ($249/mo) Optional Toggle in dashboard, default ON
Banking / Business ($899/mo) Optional Toggle in dashboard, default OFF
Enterprise ($2,900+/mo) Not required White-label included

Every API response includes the header X-Oravys-Attribution-Required: true or false. Respectful integrators read this once and render the right badge automatically.

Badge: dark theme (recommended)

Powered by ORAVYS
<a href="https://oravys.com" target="_blank" rel="noopener"
  style="display:inline-flex;align-items:center;gap:8px;padding:8px 14px;
         background:#0a0612;border:1px solid rgba(139,92,246,0.3);
         border-radius:10px;font-family:Inter,sans-serif;font-size:13px;
         color:#fff;text-decoration:none;font-weight:500;">
  <svg viewBox="0 0 24 24" width="16" height="16" fill="none"
       stroke="#a78bfa" stroke-width="2">
    <path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/>
  </svg>
  Powered by <strong style="font-weight:700;color:#a78bfa;">ORAVYS</strong>
</a>

Badge: light theme

Powered by ORAVYS
<a href="https://oravys.com" target="_blank" rel="noopener"
  style="display:inline-flex;align-items:center;gap:8px;padding:8px 14px;
         background:#fff;border:1px solid rgba(0,0,0,0.1);
         border-radius:10px;font-family:Inter,sans-serif;font-size:13px;
         color:#0a0612;text-decoration:none;font-weight:500;">
  <svg viewBox="0 0 24 24" width="16" height="16" fill="none"
       stroke="#7c3aed" stroke-width="2">
    <path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/>
  </svg>
  Powered by <strong style="font-weight:700;color:#7c3aed;">ORAVYS</strong>
</a>

Text-only attribution

For email signatures, CSV exports, or anywhere SVG isn't supported:

Voice analysis powered by ORAVYS (https://oravys.com).

Smart auto-render (reads response header)

Drop this once in your client. It renders the badge only when ORAVYS tells you to, respects your customer's tier automatically:

fetch('https://api.oravys.com/v1/analyze', { method: 'POST', headers: { 'X-API-Key': YOUR_KEY }, body: formData })
  .then(res => {
    if (res.headers.get('X-Oravys-Attribution-Required') === 'true') {
      document.getElementById('oravys-badge').innerHTML =
        '<a href="https://oravys.com">Powered by ORAVYS</a>';
    }
    return res.json();
  });

What you cannot do

Questions

Need a custom co-brand, dark/light auto-switch, or want to discuss white-label for a tier below Enterprise? Email contact@oravys.com.