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

# Get Links on Page

> Render a web page and return the links Cloudflare finds on it.

**Get Links on Page** opens a URL with Cloudflare Browser Rendering and returns
the links found after the page renders. This is useful for link discovery on
JavaScript-heavy pages.

## Inputs

| Input                         | Type               | Required | Description                                                 |
| ----------------------------- | ------------------ | -------- | ----------------------------------------------------------- |
| **Third-party account**       | Cloudflare account | Yes      | The Cloudflare account used for browser rendering.          |
| **URL**                       | String             | Yes      | The complete page URL to inspect.                           |
| **Wait For Selector**         | String             | No       | A CSS selector that must appear before links are collected. |
| **Wait Time**                 | Number             | No       | Extra delay after load, from `0` to `30000` milliseconds.   |
| **Viewport Width**            | Number             | No       | Viewport width, up to `1920`. Defaults to `1920`.           |
| **Viewport Height**           | Number             | No       | Viewport height, up to `1080`. Defaults to `1080`.          |
| **JavaScript Code**           | String             | No       | JavaScript inserted into the rendered page.                 |
| **Additional API Parameters** | Object             | No       | Extra fields passed to Cloudflare's links endpoint.         |

## Output

| Output    | Type            | Description                                                                 |
| --------- | --------------- | --------------------------------------------------------------------------- |
| **Links** | List of strings | Links returned by the rendered page. The list is empty when none are found. |

<Note>
  This action discovers links on one page; it does not crawl those links. Use a
  loop or a crawl-oriented integration when you need to visit them.
</Note>

If links appear only after an interaction, use **JavaScript Code** to perform
that interaction and **Wait For Selector** to identify when the new content is
ready.
