✨
Aztup API Docs
  • Aztupbrew API Docs
  • NPM Package Docs
Powered by GitBook
On this page
  • Obfuscation
  • JSON Data Example

Was this helpful?

Aztupbrew API Docs

This is the API docs for aztup's API

Obfuscation

POST https://obfuscator.aztupscripts.xyz/api/v1/obfuscate

You can obfuscate your scripts at this endpoint

Request Body

Name
Type
Description

options

array

All the options for the script, must all be put in and set to false by default.

script

string

You input your script here

{ "script": "Your Obfuscated Script" }

JSON Data Example

{
  "script":"print('Hello, World!')",
  "options":{
    "AddMemes":false,
    "PreserveLineInfo":false,
    "NoControlFlow":false,
    "EncryptStrings":false,
    "EncryptImportantStrings":false,
    "NoBytecodeCompress":false,
    "Uglify":false
  }
}
NextNPM Package Docs

Last updated 4 years ago

Was this helpful?