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

# Bot Introduction

A Bot is a reusable Cloud automation for a repeatable web data task.

Both Agent Built and Workflow Built create Bots. After construction, the automation is managed, identified, and run as a Bot.

## How Bots Work

Building defines and tests the Bot's extraction logic. Running uses a specific set of inputs to produce a structured result.

Each build, test, or run creates a separate Task. A Task records the operation and its available status, inputs, result, and usage information.

## Bot Inputs

Inputs are values that can change between runs, such as:

* URL
* Keyword
* Country or region
* Category
* Date range
* Record limit

Default values make a Bot easier to test, but users can replace them when running the Bot.

## Bot Outputs

Outputs are the structured fields returned by the Bot, such as product name, price, rating, source URL, or publish date.

For list extraction, the result contains one structured record per item. A missing field should remain empty rather than being inferred from unrelated page content.

## Bot ID

Every Bot has a Bot ID. You can find it in either of these ways:

* Open `Bots` and move the pointer over the Bot card to reveal its ID and copy button.
* Open the Bot and find its ID in the Bot page URL in the browser address bar.

<img src="https://mintcdn.com/browseract/29l4R2D8vKlJa4eu/images/find-bot-id.png?fit=max&auto=format&n=29l4R2D8vKlJa4eu&q=85&s=c1d2c0669685dd2e2314f6fc82dbb36c" alt="Find and copy a Bot ID from the Bots page" width="1904" height="489" data-path="images/find-bot-id.png" />

Use the Bot ID when an integration needs to identify which Bot to run. BrowserAct Cloud uses Bot and Bot ID consistently as the user-facing object and identifier.

## Task ID

Every Task has a unique Task ID. It identifies one specific build, test, or run.

Open the Bot, select `History`, and find the Task ID in the `ID` column. You can also view it in the Task details.

<img src="https://mintcdn.com/browseract/29l4R2D8vKlJa4eu/images/find-task-id.png?fit=max&auto=format&n=29l4R2D8vKlJa4eu&q=85&s=91bf7bd6afce1ba315c9f30a248296b1" alt="Find a Task ID in the Bot History" width="1901" height="460" data-path="images/find-task-id.png" />

Use the Task ID when reviewing a specific execution or sharing an issue with BrowserAct Support. A Task ID does not replace the Bot ID used to identify which Bot to run.

## Bot and Task

```text theme={null}
Bot = reusable automation
Task = one build, test, or run record
Result = structured output from a completed run
```

A Bot can have many Tasks. Deleting or changing a Bot does not turn its previous Tasks into new Bots.
