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

# Is URL?

> Check whether text is a valid absolute URL.

The **Is URL?** action validates a string as a URL and returns a boolean. Use it
to guard actions that expect a complete link.

## Inputs

| Input    | Type   | Required | Description         |
| -------- | ------ | -------- | ------------------- |
| **Text** | String | Yes      | The value to check. |

## Outputs

| Output     | Type    | Description                                             |
| ---------- | ------- | ------------------------------------------------------- |
| **Result** | Boolean | `true` when the text is a valid URL; otherwise `false`. |

<Tip>
  Supply a complete URL such as `https://example.com/report`. A hostname or
  relative path by itself may not be accepted.
</Tip>
