Trust Badges
Display your Nordax verification status with an embeddable trust badge. Badges are served as live SVGs that reflect your current tier and verification status in real time.
Quick Embed
Drop this snippet into your site's footer or sidebar. The script finds all elements with data-entity and replaces them with a live badge.
<div
id="nordax-badge"
data-entity="{your-slug}"
></div>
<script
src="https://cdn.nordax.ai/cdn/badge/embed.js"
defer
></script>Replace {your-slug} with your entity slug. The badge links to your public entity profile and tracks impressions automatically.
Direct SVG URLs
Use the direct SVG endpoints if you need more control over placement. These return dynamic SVGs that always match the entity's current tier.
Simple Badge
https://cdn.nordax.ai/cdn/trust-badge/{slug}.svgReturns a verified/unverified badge. Degrades gracefully for suspended or free-tier entities.
Customizable Badge
https://cdn.nordax.ai/cdn/badges/{layout}/{theme}/{tier}/{slug}.svg| Parameter | Options | Description |
|---|---|---|
| layout | full, compact | Full shows name + tier; compact is icon-only |
| theme | dark, light | Background color scheme |
| tier | free, basic, verified, authority, gold | Badge styling tier (auto-validated server-side) |
Badge Variants
/full/dark/{tier}/{slug}.svg
Full badge on dark backgrounds
/full/light/{tier}/{slug}.svg
Full badge on light backgrounds
/compact/dark/{tier}/{slug}.svg
Compact badge on dark backgrounds
/compact/light/{tier}/{slug}.svg
Compact badge on light backgrounds
NETP Trust Seal
Paid-tier entities also have access to the Network Entity Trust Protocol (NETP) seal, which signals verified trust metadata to AI crawlers and aggregators.
https://cdn.nordax.ai/cdn/netp/{layout}/{theme}/{slug}.svgAvailable for Basic, Verified, Authority, and Gold tier entities. Returns an “unverified” fallback for free-tier.
Truth Enforcement
Badge SVGs are generated server-side and validated against the entity's actual tier and status. This prevents misrepresentation:
- •Requesting a tier higher than the entity's actual tier degrades to the real tier
- •Suspended entities always render as “unverified”
- •Badges never return 404 — graceful fallback ensures the embed never breaks
- •ETags include status, theme, layout, and updated timestamp for smart cache invalidation
Caching
Badge SVGs are cached for 1 hour at the browser and 24 hours at the edge (with stale-while-revalidate). When an entity's tier changes, badges update within the cache window automatically. The embed script itself is cached for 1 hour (browser) and 24 hours (edge).