Catalog/data-transform-decompress

Data Transform

Zlib decompressor API

Decompress Base64 or hex encoded gzip, zlib, or raw deflate payloads.

Price$0.01per request
MethodPOST
Route/v1/data-transform/decompress
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
data-transformgzipzlibdeflatedecompress
API URLhttps://x402.hexl.dev/v1/data-transform/decompress
Integration docs
Example request
{
  "input": "H4sIAAAAAAAAE8tIzcnJVyjPL8pJAQCFEUoNCwAAAA=="
}
Example response
{
  "output": "hello world",
  "provider": "node-zlib"
}
Input schema
{
  "type": "object",
  "required": [
    "input"
  ],
  "properties": {
    "input": {
      "type": "string"
    },
    "format": {
      "type": "string",
      "enum": [
        "auto",
        "gzip",
        "zlib",
        "deflate"
      ],
      "default": "auto"
    },
    "encoding": {
      "type": "string",
      "enum": [
        "base64",
        "hex"
      ],
      "default": "base64"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}