Skip to main content

Endpoint

GET /v1/persona/{persona_id}/status

Overview

Retrieves the current status of a persona. When in CHAT status, the active thread ID is included.

Request

curl https://api.ones1ght.com/v1/persona/$PERSONA_ID/status \
  -H "Authorization: Bearer $SDK_KEY"

Response

{
  "success": true,
  "data": {
    "persona_id": "d28fd898-bfa0-4444-be38-c0655f5f8307",
    "status": "CHAT",
    "current_thread_id": "thr_a1b2c3d4e5f6",
    "last_active_at": "2026-04-17T10:30:00Z"
  }
}

Response Fields

FieldDescription
persona_idPersona ID
statusCurrent status
current_thread_idActive thread ID (when in CHAT status, otherwise null)
last_active_atLast activity time

Status Values

READY and CHAT are managed automatically by the system. Other statuses are recorded via session stamps.
StatusDescription
READYIdle (ready for chat)
CHATChat in progress (thread active)