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 URL
Integration docshttps://x402.hexl.dev/v1/data-transform/decompressExample 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
}