Skip to main content
GET
/
projects
/
{id}
/
executions
/
{executionId}
/
logs
Get execution logs
curl --request GET \
  --url https://bugzy.ai/api/v1/projects/{id}/executions/{executionId}/logs \
  --header 'Authorization: Bearer <token>'
{
  "data": "<array>",
  "pagination": {
    "page": 123,
    "pageSize": 123,
    "totalChunks": 123,
    "hasMore": true
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Project API key (bzy_proj_*). Generate in Dashboard → Project Settings → API Key.

Path Parameters

id
string<uuid>
required
executionId
string<uuid>
required

Query Parameters

page
integer
default:1

Page number (1-indexed)

pageSize
integer
default:10

Number of log chunks per page

Response

200 - application/json

Paginated execution log entries

data
array
pagination
object