SecureShield Code Obfuscation API
SecureShield is a JavaScript and TypeScript code protection API that uses AST-based (Abstract Syntax Tree) obfuscation to make your source code extremely difficult to reverse-engineer. Unlike simple minifiers that just remove whitespace, SecureShield parses your code into its syntax tree and applies multiple transformation layers: variable and function name mangling, string literal encryption…
SecureShield Code Obfuscation API endpoints
| Method | Endpoint | Description |
|---|---|---|
| v1 | ||
| POST |
/v1/verify /v1/verify |
Verify that obfuscated code produces the same results as the original. |
| GET |
/v1/results/{id} /v1/results/{id} |
Retrieve a previous protection result by job ID. Results expire after 1 hour. |
| GET |
/v1/profiles /v1/profiles |
List available protection profiles with their default technique configurations. |
| POST |
/v1/protect /v1/protect |
Apply AST-level obfuscation transforms to JavaScript or TypeScript code. Choose a protection profile or configure individual techniques. |
SecureShield Code Obfuscation API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $14.99 / month | 10 / minute |
|
| ULTRA | $149.99 / month | 30 / minute |
|