Skip to content

Quick Integration Guide

Get up and running with LR Shield in under 5 minutes. Follow the steps below.

01

Get Your API Key

Sign up or log in to get your API key.

Create Account
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.

04

Monitor

Visit your dashboard to monitor usage and tune thresholds.

Open Dashboard

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);