Skip to main content
GET
/
api
/
sessions
List active hosted clone sessions
curl --request GET \
  --url https://archal.ai/api/sessions \
  --header 'Authorization: Bearer <token>'
{
  "sessions": [
    {
      "sessionId": "<string>",
      "status": "<string>",
      "cloneIds": [
        "<string>"
      ],
      "endpoints": {},
      "apiBaseUrls": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z",
      "alive": true,
      "mcp": {},
      "resolvedSeeds": {},
      "evidence": {},
      "runtimeProvider": "<string>",
      "scenarioId": "<string>",
      "batchId": "<string>",
      "batchSuiteName": "<string>",
      "endedAt": "2023-11-07T05:31:56Z",
      "lastError": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.archal.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Active sessions owned by the authenticated user.

sessions
object[]
required