> For the complete documentation index, see [llms.txt](https://helpdocs.conducttr.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://helpdocs.conducttr.com/feature-documentation/api/endpoint-reference/exercise-control/get-pol.md).

# GET pol

<mark style="color:green;">`GET`</mark> `/pol`

Retrieves the current Pattern of Life (PoL) status for active running and stopped stacks.&#x20;

{% hint style="info" %}
Only active or previously active stacks are retrieved, *not* the full deck that might be available to the facilitator
{% endhint %}

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "stacks": [
    {
      "type": "individual" | "team",
      "stack": "01",
      "index": "0007",
      "team_id": 3437866,
      "team_name": "S - spaceowner@yourfirm.com - 2026-01-24 13",
      "interval": 2,
      "started_at": 1769323540,
      "stopped_at": 0,
      "members": ["r8Jdr", "7Ybln", "WAwlo", ...]
    }
  ]
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}

**Response Body**

<table><thead><tr><th width="132">Field</th><th width="133">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>type</code></td><td>string</td><td>Either "individual" or "team"</td></tr><tr><td><code>stack</code></td><td>string</td><td>Stack number (e.g., "01", "17", "36")</td></tr><tr><td><code>index</code></td><td>string</td><td>Current index position (e.g., "0007")</td></tr><tr><td><code>team_id</code></td><td>number</td><td>Team ID the stack is running for</td></tr><tr><td><code>team_name</code></td><td>string</td><td>Team name (see GET teams for name format)</td></tr><tr><td><code>interval</code></td><td>number</td><td>Interval setting (1-7200 seconds)</td></tr><tr><td><code>started_at</code></td><td>number</td><td>Unix timestamp when started</td></tr><tr><td><code>stopped_at</code></td><td>number</td><td>Unix timestamp when stopped (0 = currently running)</td></tr><tr><td><code>members</code></td><td>array</td><td>Array of player hash in the team_id</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://helpdocs.conducttr.com/feature-documentation/api/endpoint-reference/exercise-control/get-pol.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.
