GET pol

GET /pol

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

circle-info

Only active or previously active stacks are retrieved, not the full deck that might be available to the facilitator

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response

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

Response Body

Field
Type
Description

type

string

Either "individual" or "team"

stack

string

Stack number (e.g., "01", "17", "36")

index

string

Current index position (e.g., "0007")

team_id

number

Team ID the stack is running for

team_name

string

Team name (see GET teams for name format)

interval

number

Interval setting (1-7200 seconds)

started_at

number

Unix timestamp when started

stopped_at

number

Unix timestamp when stopped (0 = currently running)

members

array

Array of player hash in the team_id

Last updated

Was this helpful?