ZeqDecompress
Decompress .zeqc archives. Validates ZEQC magic header, extracts Zeqond metadata, Zstd decompresses, verifies SHA-256 integrity. Returns original files with creation timestamp and compression ratio.
| Endpoint | POST /api/zeq/decompress |
| Auth | api-key |
| Rate limit | 10/min |
| Category | data |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
archive | string | Yes | Base64-encoded .zeqc archive |
Returns
{ files[], originalZeqond, totalSize, sha256, verified }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"archive": "<archive>"
}' \
"https://zeqsdk.com/api/zeq/decompress"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-decompress.