# Download a small public URL list in parallel

**Use case:** 

Download two small public files in parallel into Apify storage. Replace the sample URLs with your own public HTTP/HTTPS file list, then open the Dataset for storage URLs and SHA-256 checksums.

## 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"
    }
  ],
  "concurrency": 5,
  "maxFileSizeMb": 100,
  "timeoutSeconds": 120,
  "maxRetries": 2,
  "overwrite": false
}
```

## Output

```json
{
  "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"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  },
  "final_url": {
    "label": "Final URL",
    "format": "string"
  },
  "duration_ms": {
    "label": "Duration ms",
    "format": "integer"
  }
}
```

## 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`).
