Nexilant - Secure WhatsApp Solutions
v1.0 Stable

Developer API

Integrate Nexilant's privacy tools directly into your workflow. Simple, secure, and fast.

Introduction

Welcome to the Nexilant API. You can use our API to programmatically verify license keys, check subscription status, and manage user seats.

Base URL: All API requests should be made to https://api.nexilant.com/v1/

Authentication

Authenticate your requests by including your secret API key in the header. You can manage your API keys in the Dashboard.

Terminal
curl -H "Authorization: Bearer NEX_test_123xyz" \
  https://api.nexilant.com/v1/user

GET Verify License Key

Checks if a license key is valid and active. Used by extensions during startup.

Parameters

Field Type Description
license_key string The unique key provided at purchase (e.g. NEX-8822)
device_id string Unique hardware ID of the user's machine.

Response Example

JSON
{
  "status": "active",
  "plan": "yearly_pro",
  "expiry": "2026-01-01T12:00:00Z",
  "features": [
    "blur_chat",
    "blur_media",
    "priority_support"
  ]
}