> ## Documentation Index
> Fetch the complete documentation index at: https://docs.svalync.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Zip Extraction

> Extract the zip file and get their content

## Configuration

* **Node Type:** action
* **Support:** Currently, it only support pdf and extract the text from the pdf.

### Input Fields

| Field Name | Data Type | Required | Description      |
| ---------- | --------- | -------- | ---------------- |
| file       | File      | True     | The zip file URL |

```json theme={null}
{
  "file": "<File>"
}
```

### Output Fields

| Field Name | Data Type | Required | Description                 |
| ---------- | --------- | -------- | --------------------------- |
|            | Array     | True     | An array of extracted files |

```json theme={null}
[
  "<text extracted from file 1>",
  "<text extracted from file 2>",
  "<text extracted from file 3>",
  "<text extracted from file 4>"
]
```
