---
title: Unarchiver Extractor
slug: unzip-archive
url: https://apyverse.com/apyhub/service/unzip-archive
provider: ApyHub
tags: [archive-extraction, zip, rar, 7z, file-manipulation]
auth: api_key
---

# Unarchiver Extractor

What it does Archive Extractor unpacks ZIP, RAR, and 7Z archives and returns signed URLs for each extracted file. Send it either a remote archive URL or a local archive upload, and you get back an array of file URLs you can download or pass to downstream workflows. Use POST /url/link when the archi…

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/extract/archive/url/file-urls` | What it does Extracts a remote archive from the URL you provide and returns signed URLs for each fi… | 250 |
| POST | `/extract/archive/file/file-urls` | What it does Uploads a local archive file and returns signed URLs for the files extracted from it.… | 250 |

## About

## What it does
Archive Extractor unpacks ZIP, RAR, and 7Z archives and returns signed URLs for each extracted file. Send it either a remote archive URL or a local archive upload, and you get back an array of file URLs you can download or pass to downstream workflows.

Use `POST /url/link` when the archive is already hosted somewhere accessible by URL. Use `POST /file/link` when you have the archive file in hand and want to upload it directly. In both cases, the response is a `data` array of signed cloud storage URLs, one for each file extracted from the archive.

This is a good fit for ingestion pipelines, document processing, and support tooling where users submit bundled assets. For example, you can accept a ZIP of invoices, extract each file, and forward the returned URLs to OCR, storage, or review steps without doing archive handling in your own code.

Archive Extractor keeps the interface simple: one input for the archive, one structured list of file links out. That makes it easy to drop into file intake jobs, batch processors, or any backend that needs to open compressed uploads and work with the extracted contents individually.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyverse.com/apyhub/service/unzip-archive
