Skip to main content
GET
/
v1
/
executions
/
{executionId}
/
logs
Get Execution Logs
curl --request GET \
  --url https://api.anchorbrowser.io/v1/executions/{executionId}/logs \
  --header 'anchor-api-key: <api-key>'
{
  "logs": [
    {
      "timestamp": "<string>",
      "type": "<string>",
      "level": "<string>",
      "message": "<unknown>"
    }
  ]
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

executionId
string
required

The execution result ID.

Response

Execution logs retrieved successfully.

logs
object[]