Encoding
ROT47 transform API
Applies ROT47, the self-inverse rotation over the 94 printable ASCII characters (33-126) — a superset of ROT13 that also scrambles digits and punctuation. Answers 'What is the ROT47 of this text?', 'Reverse a ROT47 string.'
Price$0.01per request
MethodPOST
Route/v1/encoding/rot47
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
rot47rotationcipherasciiself-inverseobfuscatepuzzleencoding
API URL
Integration docshttps://x402.hexl.dev/v1/encoding/rot47Example request
{
"value": "Test"
}Example response
{
"result": "%6DE",
"interpretation": "ROT47 (self-inverse rotation over printable ASCII 33..126)."
}Input schema
{
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"examples": [
"Test"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}