GET
/
process
/
{identifier}
/
logs
Get process logs
curl --request GET \
  --url https://run.blaxel.ai/{workspace_id}/sandboxes/{sandbox_id}/process/{identifier}/logs \
  --header 'Authorization: Bearer <token>'
{
  "logs": "logs output",
  "stderr": "stderr output",
  "stdout": "stdout output"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

identifier
string
required

Process identifier (PID or name)

Response

Process logs

logs
string
required
Example:

"logs output"

stderr
string
required
Example:

"stderr output"

stdout
string
required
Example:

"stdout output"