← Back to Privacy Scanner

Add an SPS Badge or Dial

Show your visitors that your site takes privacy seriously. Choose a flat badge for READMEs and footers, or a circular score dial for dashboards and sidebars. Both link to your full scan results and update automatically.

1. Scan your site

If you have not already, scan your domain to generate a score. The scanner evaluates 24 checks across transport security, security headers, tracking, cookies, DNS, and best practices.

2. Copy an embed snippet

Replace YOUR-DOMAIN with your actual domain (e.g., example.com).

Flat Badge

A shields.io-style badge showing your grade and score. Great for README files and website footers.

HTML
<a href="https://seglamater.app/privacy/scan/YOUR-DOMAIN">
  <img src="https://seglamater.app/api/privacy/badge/YOUR-DOMAIN.svg"
       alt="SPS Score" height="20">
</a>
Markdown
[![SPS Score](https://seglamater.app/api/privacy/badge/YOUR-DOMAIN.svg)](https://seglamater.app/privacy/scan/YOUR-DOMAIN)
reStructuredText
.. image:: https://seglamater.app/api/privacy/badge/YOUR-DOMAIN.svg
   :target: https://seglamater.app/privacy/scan/YOUR-DOMAIN
   :alt: SPS Score

Score Dial

A circular gauge showing your numeric score and grade. Works well in dashboards, sidebars, and status pages. Default size is 120px; set ?size=N for any value between 60 and 300.

HTML (default size)
<a href="https://seglamater.app/privacy/scan/YOUR-DOMAIN">
  <img src="https://seglamater.app/api/privacy/dial/YOUR-DOMAIN.svg"
       alt="SPS Score" width="120" height="120">
</a>
HTML (custom size, e.g. 80px)
<a href="https://seglamater.app/privacy/scan/YOUR-DOMAIN">
  <img src="https://seglamater.app/api/privacy/dial/YOUR-DOMAIN.svg?size=80"
       alt="SPS Score" width="80" height="80">
</a>
Markdown
[![SPS Score](https://seglamater.app/api/privacy/dial/YOUR-DOMAIN.svg)](https://seglamater.app/privacy/scan/YOUR-DOMAIN)

3. That is it

Both formats are SVGs served from our API. They show your letter grade and score, update when you rescan, and are cached for one hour. No JavaScript required — just an image tag.

Example

Here is what both options look like for this site:

Badge SPS Badge for seglamater.app
Dial SPS Dial for seglamater.app

Clicking either one takes visitors to the full scan results, where they can see every check, every score, and every recommendation.

API Reference

Badge SVG GET /api/privacy/badge/{domain}.svg
Dial SVG GET /api/privacy/dial/{domain}.svg?size=120
Scan results (JSON) GET /api/privacy/verify/{domain}
Trigger a scan POST /api/privacy/scan (3/min)
Scan history GET /api/privacy/history/{domain}
All scanned domains GET /api/privacy/scans

All endpoints are public. No authentication required. Base URL: https://seglamater.app

Bonus: privacy.json

Want to earn extra points? Add a /.well-known/privacy.json file to your site declaring your privacy practices. The scanner checks for it automatically.

{
  "spec": "seglamater-privacy-spec",
  "version": "1.0",
  "claims": {
    "analytics": "none",
    "third_party_scripts": "none",
    "cookie_policy": "essential-only",
    "data_retention_days": 30,
    "ip_logging": false,
    "user_tracking": false,
    "data_sharing": "none"
  },
  "contact": "privacy@yourdomain.com",
  "last_reviewed": "2026-01-01"
}

See the full specification for field details.

Browser Extension

The SPS browser extension shows any website's privacy grade right in your toolbar as you browse. No data collected, no tracking — just a letter grade and a link to the full report.

Available for Chromium-based browsers (Chrome, Edge, Brave, etc.)