Extracts every file from a zip or 7z archive and returns a separate download URL for each extracted file. The archive format is detected automatically. Note that extraction is billed on the uncompressed total, which can be significantly larger than the compressed size, so consider listing the archive first for large or unknown inputs.
You want the actual files out of an archive.
Just seeing what is inside (listing is cheaper), or password-protected archives.
~2 credits / megabyte (up to 250)
Priced at 0.5 credits per MB of the extracted contents, which can exceed the compressed size.
Estimated; the actual charge depends on your input and is shown in the response.
Set these inside the intent when you run it.
The zip or 7z archive to extract.
A download URL for each extracted file from the archive.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Archive skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/archive/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"unzip","archive":"archive.zip"}}'Example requests