EggLang API Usage
×Endpoint: POST /api/egg-lang/encode/<json/raw>
Data: Required field: 'text'
Returns: Encoded string in EggLang
Limit: 20 requests per minute, up to 500 chars
cURL Example:
curl -X POST -d "text=hi" /api/egg-lang/encode/json
Result: | Result when an error occurs: |
{ "success": true, "text": "Egg EgG eGG Egg Egg EGG egg egG" } |
{ "success": false } |
Endpoint: POST /api/egg-lang/decode/<json/raw>
Data: Required field: 'text'
Returns: Decoded string in human readable format
Limit: 20 requests per minute, up to 6000 chars (1500 eggs)
cURL Example:
curl -X POST -d "text=Egg EgG eGG Egg Egg EGG egg egG" /api/egg-lang/decode/raw
Result: | Result when an error occurs: |
hi | Error |