Skip to main content
POST
/
v2
/
aether
/
playbook
/
plan
Create Plan
curl --request POST \
  --url https://api.example.com/v2/aether/playbook/plan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "<string>"
}
'
{
  "data": {
    "type": "start",
    "messageId": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.api.stuut.co/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.

Body

application/json
prompt
string
required

Response

Successful Response

SSE frame describing the data: payload as a discriminated event union.

Speakeasy's SSE schema model expects each frame's top-level properties to be SSE protocol fields (id, event, data, retry). The data field here describes the JSON object inside each data: line — a discriminated union of every event the aether wire emits. The wire format is unchanged from Vercel AI SDK v6 (data: {"type": "...", ...}).

data
StartEvent · object
required