DevTools.at
API Documentation
POST/api/v1/rot13

ROT13

Apply ROT13 cipher to text

encoders

Parameters

inputstring
Yes

Text to transform

Example Request

curl -X POST https://devtools.at/api/v1/rot13 \
  -H "Content-Type: application/json" \
  -d '{"input":"Hello World"}'

Example Response

{
  "success": true,
  "data": {
    "result": "Uryyb Jbeyq"
  },
  "meta": {
    "processingTime": 1
  }
}

Try it out

Test this endpoint directly in your browser

Response
Click "Execute Request" to see the response