Integration

WebmasterID on Vercel

Any site you deploy on Vercel can use WebmasterID with the standard consent-gated script tag. This is a normal static/SSR integration — there is no special Vercel partnership required.

Add the tracker

For GDPR/ePrivacy, load the tracker only after analytics consent. The pattern below is the same consent-gated approach documented in Privacy & GDPR — inject it from your consent manager when the analytics category is granted, not unconditionally.

<script
  id="webmasterid-tracker"
  defer
  src="https://webmasterid.com/tracker.iife.min.js"
  data-wmid="wm_xxxxxxxxxxxxxxxx"
  data-endpoint="https://webmasterid-ingest-api.vercel.app/api/events">
</script>

Headers & CSP

If you set a Content-Security-Policy (via vercel.json headers or your framework), allow the script source and the ingest endpoint:

script-src 'self' https://webmasterid.com;
connect-src 'self' https://webmasterid-ingest-api.vercel.app;

Notes

  • Static export, SSR, and edge all work — the tracker is client-side.
  • Keep the tag in one shared layout/template so it loads once.
  • Nothing here implies an official integration; it is a standard deployment.

FAQ

Is there a Vercel integration?

This guide uses the standard script-tag approach; no official marketplace integration is implied.

Does SSR matter?

No — the tracker runs in the browser after consent regardless of rendering mode.

CSP blocking it?

Allow webmasterid.com in script-src and the ingest endpoint in connect-src.

Related

Related tools

HELPERG ecosystem

Owned, lightweight,
privacy-conscious

WebmasterID is designed for website visibility you control. Explore the product, docs, and integrations.