UwU-Lang API Usage

×


Endpoint: POST /uwu-lang/api/v1/encode/json
Data: Required field: 'text'
Returns: Encoded string in UwULang
Limit: Up to 1000 chars

cURL Example:
curl -X POST -d "text=hi" /uwu-lang/api/v1/encode/json

Result: Result when an error occurs:
{
    "success": true,
    "text": "Uwu UwU uWU Uwu Uwu UWU uwu uwU"
}
{
    "success": false
}



Endpoint: POST /uwu-lang/api/v1/decode/json
Data: Required field: 'text'
Returns: Decoded string in human readable format
Limit: Up to 12000 chars (3000 words)

cURL Example:
curl -X POST -d "text=Uwu UwU uWU Uwu Uwu UWU uwu uwU" /uwu-lang/api/v1/decode/json

Result: Result when an error occurs:
{
    "success": true,
    "text": "hi"
}
{
    "success": false
}
UwU-Lang 2.1 Public