GET
Get build processing logs

Authorizations

api-key
string
header
required

Per-project server key, prefixed sk_live_. Full access to every endpoint. Keep it on your backend: never ship it in a game binary.

Path Parameters

build_id
string
required

Build identifier.

Example:

"build_9f2c"

Query Parameters

limit
integer
default:100

Maximum number of log lines to return.

Required range: 1 <= x <= 1000
since
string<date-time>

Only return log lines at or after this timestamp.

Example:

"2026-09-21T14:00:00Z"

level
enum<string>

Only return log lines at this level.

Available options:
info,
warn,
error

Case-insensitive substring filter applied to the log message.

Example:

"port 7777"

cursor
string

Pagination cursor. Pass next_token from a previous response to page towards newer lines, or older_token to page towards older lines.

Example:

"cursor_abc"

Response

A page of log lines.

Cursor-paginated logs. next_token pages towards newer lines, older_token towards older lines. Both are absent when no more lines exist in that direction. For live output use the SSE stream instead of polling.

data
object[]
required
next_token
string
Example:

"cursor_abc"

older_token
string
Example:

"cursor_xyz"