# 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
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://peanut1120.gitbook.io/aztup-api-docs/master.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
