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

# Via URL

> Scheduled URL integration

## Overview

Use this mode to let Algure pull your feed from a remote URL on a schedule. It is the lowest-effort automated option if you can publish a stable feed URL.

## Setup

<Steps>
  <Step title="Prepare the feed">
    Build the feed using the catalog feed columns and format rules.
  </Step>

  <Step title="Create the integration">
    In Algure, create a Feed integration for your organization.
  </Step>

  <Step title="Configure URL and schedule">
    Set the feed URL, CRON schedule, and optional Basic Auth credentials.
  </Step>

  <Step title="Maintain the source URL">
    Keep the feed file updated at the same URL endpoint.
  </Step>
</Steps>

## Requirements

* Feed URL must be `https://`
* CRON schedule must have at least 1 hour between runs
* URL must be reachable when the integration is created

## Limits

* Algure waits up to 10 seconds for the URL response
* Feed processing is asynchronous
* You cannot force an immediate pull on demand

## Auth and Request Headers

If username/password is configured, Algure sends:

```txt theme={"dark"}
Authorization: Basic base64(user:password)
```

Algure also sends a `User-Agent` header:

```txt theme={"dark"}
AlgureLogistic/<version>
```

## Notes

* Use a stable URL and avoid temporary links
* If you need full control over execution timing, use [Via API](/integration/via-api)
