Skip to main content
POST
/
api
/
v1
/
agent-builder
/
start
Start a new agent building session
curl --request POST \
  --url https://dashboard.sequentum.com/api/v1/agent-builder/start \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "mode": "<string>",
  "url": "<string>",
  "prompt": "<string>",
  "spaceId": 123
}
'
{
  "success": true,
  "sessionId": "<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}"

Body

The request containing mode (url/prompt) and input

Request to start an agent building session

mode
string | null

Input mode: "url" or "prompt"

url
string | null

URL to navigate to (for URL mode)

prompt
string | null

Natural language prompt describing automation (for prompt mode)

spaceId
integer<int32> | null

Optional space ID to save the agent to

Response

OK

Response when starting an agent build session

success
boolean
sessionId
string | null
error
string | null