Badge Integration

Display your SolCertUp certification badge on your website to build trust with your users.

Quick Installation

Add this code snippet to your website:

html
<!-- SolCertUp Verification Badge -->
<div id="solcertup-badge"></div>
<script src="https://solcertup.com/badge.js"></script>
<script>
  SolCertUp.renderBadge({
    projectId: "YOUR_PROJECT_ID_HERE",
    style: "vertical" // or "horizontal", "minimal"
  });
</script>

Badge Styles

Vertical

[Badge Preview: Vertical]

Horizontal

[Badge Preview: Horizontal]

Minimal

[Badge Preview: Minimal]

Configuration Options

javascript
SolCertUp.renderBadge({
  projectId: "your-project-id",      // Required
  style: "vertical",                  // vertical, horizontal, minimal
  theme: "dark",                      // dark, light
  width: "200px",                     // Badge width
  showTier: true,                     // Display tier level
  showScore: true,                    // Display trust score
  onClick: "registry"                 // registry, dashboard, custom-url
});

React Integration

typescript
import { SolCertUpBadge } from '@solcertup/react';

export default function MyComponent() {
  return (
    <SolCertUpBadge
      projectId="YOUR_PROJECT_ID"
      style="vertical"
      theme="dark"
      showTier={true}
    />
  );
}

Verification API

Programmatically verify certification status:

javascript
// Fetch certification details
const response = await fetch(
  'https://api.solcertup.com/v1/verify/YOUR_PROJECT_ADDRESS',
  {
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY_HERE'
    }
  }
);

const data = await response.json();
console.log(data.tier);        // "gold"
console.log(data.trustScore);  // 92
console.log(data.expiresAt);   // "2025-06-09"

Placement Recommendations

Hero Section

Place badge near your main value proposition to build immediate trust

Footer

Ideal for horizontal badge style to maintain consistency

About Page

Highlight your security commitment and transparency

Trust/Security Page

Dedicated page for security and compliance information