Catalog/encoding-base36

Encoding

Base36 big-integer codec API

Encodes/decodes a byte stream as canonical lowercase base36 via big-integer radix conversion — common for compact alphanumeric IDs and timestamps. Answers 'What is the base36 of these bytes?', 'Decode this base36 string back to bytes.'

Price$0.01per request
MethodPOST
Route/v1/encoding/base36
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
base36radix36encodedecodecodecbigintalphanumericencoding
API URLhttps://x402.hexl.dev/v1/encoding/base36
Integration docs
Example request
{
  "value": "ffaa",
  "inputEncoding": "hex"
}
Example response
{
  "operation": "encode",
  "result": "1ei2",
  "interpretation": "Encoded 2 bytes to base36 (big-integer radix)."
}
Input schema
{
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "examples": [
        "ffaa"
      ]
    },
    "operation": {
      "type": "string",
      "enum": [
        "encode",
        "decode"
      ]
    },
    "inputEncoding": {
      "type": "string",
      "examples": [
        "hex",
        "utf8",
        "base64"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}