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

# URL Connector

> Connect using direct links to files like pre-signed S3 URLs

Provide direct links to files we should download (commonly S3 pre‑signed URLs). Each URL is the stable identifier echoed in responses.

### Discriminant

* `type: "url"`

### Minimal config

```json theme={null}
{
  "connector": {
    "type": "url",
    "urls": [
      "https://signed.example.com/abc.pdf",
      "https://signed.example.com/demo.mp4"
    ]
  }
}
```

Identifier mapping

Each URL is used as the input identifier in responses.

### Going deeper

* Prefer stable, long‑enough lifetimes for URLs to cover the full processing time.
* If your URLs may expire quickly, consider the S3 connector instead to avoid timeouts during download.
