Base64 Decode
Convert any base64 encrypted data to original code/text with this API Fastly.
Endpoint
GET
https://api.lmnx9.shop/base64.php?tool=dec&data=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/base64.php?tool=dec&data=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/base64.php?tool=dec&data=")
.then(function(r){return r.json()})
.then(function(d){console.log(d)});Python
import requests
r = requests.get("https://api.lmnx9.shop/base64.php?tool=dec&data=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/base64.php?tool=dec&data=");
print_r(json_decode($d, true));Example Response
{
"success": true,
"developer": "DARK LMNx9",
"telegram": "@x_LMNx9",
"tool": "dec",
"input": "SGVsbG8gV29ybGQsIEltIERBUksgTE1OeDk=",
"output": "Hello World, Im DARK LMNx9"
}