Skip to main content
GET
/
templates
/
{template_id}
/
builds
/
{build_id}
/
logs
Stream build logs via SSE
curl --request GET \
  --url https://api-staging.superserve.ai/templates/{template_id}/builds/{build_id}/logs \
  --header 'X-API-Key: <api-key>'
{
  "timestamp": "2023-11-07T05:31:56Z",
  "stream": "stdout",
  "text": "<string>",
  "finished": true,
  "status": "ready"
}

Documentation Index

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

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

Authorizations

X-API-Key
string
header
required

Path Parameters

template_id
string<uuid>
required

The unique identifier of the template.

build_id
string<uuid>
required

The unique identifier of the template build.

Response

SSE stream of build log events

A single SSE event from the build log stream.

timestamp
string<date-time>
stream
enum<string>

stdout/stderr are forwarded from the build process. system is platform-emitted status text (step boundaries, snapshot phase, terminal status).

Available options:
stdout,
stderr,
system
text
string
finished
boolean

True on the final event.

status
enum<string>

Terminal status, present on the final event.

Available options:
ready,
failed,
cancelled