# Batch download mixed public files with per-file status

**Use case:** 

Download a mixed public batch of PDF and text files with one status row per URL. Replace the sample URLs with your own public list, then use the All view to verify every file before opening its storage URL.

## Input

```json
{
  "urls": [
    {
      "url": "https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf",
      "fileName": "dummy.pdf"
    },
    {
      "url": "https://www.rfc-editor.org/rfc/rfc791.txt",
      "fileName": "rfc791.txt"
    },
    {
      "url": "https://www.rfc-editor.org/rfc/rfc793.txt",
      "fileName": "rfc793.txt"
    }
  ],
  "concurrency": 5,
  "maxFileSizeMb": 100,
  "timeoutSeconds": 120,
  "maxRetries": 1,
  "overwrite": false
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "source_id": {
    "label": "Source ID",
    "format": "string"
  },
  "source_index": {
    "label": "Index",
    "format": "integer"
  },
  "file_name": {
    "label": "File",
    "format": "string"
  },
  "bytes": {
    "label": "Bytes",
    "format": "integer"
  },
  "content_type": {
    "label": "Type",
    "format": "string"
  },
  "sha256": {
    "label": "SHA-256",
    "format": "string"
  },
  "storage_url": {
    "label": "Storage URL",
    "format": "string"
  },
  "error_code": {
    "label": "Error",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  },
  "duration_ms": {
    "label": "Duration ms",
    "format": "integer"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Parallel Bulk File Downloader – Fast URL Downloads](https://apify.com/automa-flow/parallel-bulk-file-downloader.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automa-flow/parallel-bulk-file-downloader.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/automa-flow/parallel-bulk-file-downloader.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
