# Bot List

<pre class="language-http"><code class="lang-http"><strong>[GET] https://tap.gateway:port/Status/list
</strong></code></pre>

## Request headers

This is a simple **GET** request that requires no parameters.&#x20;

## Request body

This is a simple **GET** request that does not require a body.

## Returns

The TGA should reply with a code 200 and the bot instance list as an array, in JSON format:

```json
[
	{
		"guid": "f978fa59-706a-4768-9876-86e629649315",
		"status": "Stopped",
		"path": "C:\\Tailent\\Test\\Test.tap",
		"start": "2024-10-09T05:32:42.5363939-07:00"
	},
	{
		"guid": "2777f2d5-dbf1-41a0-ad1a-b2c9b9388baf",
		"status": "Running",
		"path": "C:\\Tailent\\Test\\Test.tap",
		"start": "2024-10-09T05:33:16.4779509-07:00"
	}
]
```

**guid -** represents the bot instance guid, which is generated with the [Start Session Bot](/getting-started/tailent-gateway-agent/tap-gateway-agent-api-references/start-session-bot.md) request.

**status** - represents the current status of the bot; this can be Stopped or Running.

**path** - represents the path of the .tap automation file

**start** - represents the starting time of the bot instance.

## Example curl request

```sh
curl --request GET \
  --url https://localhost:65001/Status/list \
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tailent.com/getting-started/tailent-gateway-agent/tap-gateway-agent-api-references/bot-list.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
