Catalog/data-transform-rot

Data Transform

ROT/Caesar transform API

Apply ROT13 or a custom Caesar shift while preserving letter case.

Price$0.01per request
MethodPOST
Route/v1/data-transform/rot
StatusLive
MIME typeapplication/json
Rate limit240/minute
CacheNo cache
data-transformrot13caesarcryptography
API URLhttps://x402.hexl.dev/v1/data-transform/rot
Integration docs
Example request
{
  "input": "uryyb"
}
Example response
{
  "operation": "encode",
  "shift": 13,
  "output": "hello",
  "provider": "local-rot"
}
Input schema
{
  "type": "object",
  "required": [
    "input"
  ],
  "properties": {
    "input": {
      "type": "string"
    },
    "shift": {
      "type": "number",
      "default": 13
    },
    "operation": {
      "type": "string",
      "enum": [
        "encode",
        "decode"
      ],
      "default": "encode"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}