Infra APIBuild

Get build job logs

Returns the most recent log lines. Phase-A logs are Redis-stream-only and ephemeral (durable tail is P3).

GET/api/v1/build/jobs/{id}/logs

Returns the most recent log lines. Phase-A logs are Redis-stream-only and ephemeral (durable tail is P3).

Authorization

BearerAuth
AuthorizationBearer <token>

Supabase JWT Bearer token

In: header

Path Parameters

id*string

Build job id

Query Parameters

limit?integer

Max lines (default 500)

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/build/jobs/string/logs"
{  "logs": [    {      "done": true,      "id": "string",      "output": "string"    }  ]}
{  "error": "string",  "message": "string"}
{  "error": "string",  "message": "string"}