Quick Integration Guide
Get up and running with LR Shield in under 5 minutes. Follow the steps below.
02
Install SDK
Choose your language and add the SDK to your project.
03
Check IPs
Send an IP address to our endpoint and get a risk assessment.
SDK Code Snippets
const axios = require('axios');
const res = await axios.get(
'https://api.lrdefender.lightningresearch.ai/v1/vpn-check/8.8.8.8',
{ headers: { 'X-API-Key': 'YOUR_API_KEY' } }
);
console.log(res.data.action);