Skip to main content
Full working Node.js examples for the RMZ license verification API. Requires Node.js 18+ (uses built-in fetch). No external dependencies needed — even E2EE uses the built-in crypto module. All examples are available on GitHub: github.com/Rmz-App/rmz-license-examples

Plain Verification

With E2EE

When E2EE is enabled on your product, all responses are AES-256-GCM encrypted. This example decrypts them using Node.js built-in crypto.

Key Functions

Dependencies

If you are using Node.js older than 18, install node-fetch as a dependency and import it: const fetch = require("node-fetch").