Utilities
Cryptography decoder API
Decode Morse, Bacon, binary, octal, decimal, and hex text encodings.
Price$0.01per request
MethodPOST
Route/v1/cryptography/decode
StatusLive
MIME typeapplication/json
Rate limit180/minute
CacheNo cache
cryptographydecodemorsebaconbinary
API URL
Integration docshttps://x402.hexl.dev/v1/cryptography/decodeExample request
{
"input": ".... . .-.. .-.. ---",
"mode": "morse"
}Example response
{
"output": "HELLO",
"provider": "local-cryptography"
}Input schema
{
"type": "object",
"required": [
"input",
"mode"
],
"properties": {
"input": {
"type": "string"
},
"mode": {
"type": "string",
"enum": [
"morse",
"bacon",
"binary",
"octal",
"decimal",
"hex"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}