// Example of creating a JWT using the Enc Keyconst jwt = require('jsonwebtoken');// Payload for your API requestconst payload = { // Your request data};// Create a signed JWT using your Enc Keyconst token = jwt.sign(payload, 'YOUR_ENC_KEY', { algorithm: 'HS256', expiresIn: '1h'});// Include this token in your request