Catalog/data-transform-auto-decode

Data Transform

Auto decode suggestions API

Try safe local decoders such as URL, HTML entities, Base64, Base64URL, hex, gzip+Base64, and ROT13, then return plausible candidates.

Price$0.01per request
MethodPOST
Route/v1/data-transform/auto-decode
StatusLive
MIME typeapplication/json
Rate limit180/minute
CacheNo cache
data-transformdecodeheuristiccryptography
API URLhttps://x402.hexl.dev/v1/data-transform/auto-decode
Integration docs
Example request
{
  "input": "aGVsbG8="
}
Example response
{
  "candidates": [
    {
      "operation": "base64-decode",
      "output": "hello"
    }
  ],
  "provider": "local-auto-decode"
}
Input schema
{
  "type": "object",
  "required": [
    "input"
  ],
  "properties": {
    "input": {
      "type": "string"
    },
    "maxOutputLength": {
      "type": "number",
      "minimum": 20,
      "maximum": 2000,
      "default": 200
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}