Skip to main content
GET
/
api
/
v1
/
agent-builder
/
{sessionId}
/
status
Get current status for a session (lightweight polling endpoint — no events)
curl --request GET \
  --url https://dashboard.sequentum.com/api/v1/agent-builder/{sessionId}/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "lastEventIndex": 123,
  "configId": 123,
  "agentName": "<string>",
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt

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

Authorizations

Authorization
string
header
required

API Key authorization header. Example: "Authorization: ApiKey {your-api-key}"

Authorization
string
header
required

OAuth 2.0 Bearer token. Example: "Authorization: Bearer {access-token}"

Path Parameters

sessionId
string
required

The session ID returned from /start

Response

OK

Lightweight response for the status polling endpoint. Does not include events or snapshots — use GET /events for the event stream.

status
string | null

Current status: processing, ready, completed, error, cancelled

lastEventIndex
integer<int32>

Index of the last event emitted (use as lastEventIndex for GET /events)

configId
integer<int32> | null

Config ID once the agent has been published

agentName
string | null

Agent name once the agent has been published

error
string | null

Error message when status is "error"