# Aztupbrew API Docs

## Obfuscation

<mark style="color:green;">`POST`</mark> `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                                                      |

{% tabs %}
{% tab title="200 Script obfuscated" %}

```
{ "script": "Your Obfuscated Script" }
```

{% endtab %}
{% endtabs %}

## JSON Data Example

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