API Documentation 1.0

Welcome to the MR_ENCRYPTION Developer Hub. Access our military-grade encryption, steganography, and GPS-tracing utilities via a simple JSON-based REST API.

Authentication

Currently, the API is open for public use (v1.0). Rate limits apply based on IP address.

BASE_URL: https://your-domain.com/api/process.php

1. Encryption & GPS

Encrypt text with optional Burn-After-Reading and GPS tagging.

Request Body (JSON)

{
  "action": "encrypt",
  "text": "Top Secret Data",
  "burn_after_read": true,
  "device_meta": {
    "location": {
      "lat": 30.0444,
      "lng": 31.2357,
      "accuracy": 20
    }
  }
}

Success Response

{
  "status": "success",
  "result": "MR-X9a2..."
}

2. Decryption

Retrieve original text. If burn_after_read was active, data is permanently deleted after this call.

Request Body (JSON)

{
  "action": "decrypt",
  "text": "MR-X9a2..."
}

3. Steganography

Hide or reveal secrets inside images.

Hide Message

{
  "action": "stegano",
  "stego_action": "hide",
  "text": "Hidden Message",
  "image": "data:image/png;base64,..."
}

Reveal Message

{
  "action": "stegano",
  "stego_action": "reveal",
  "image": "data:image/png;base64,..."
}