Skip to main content
GET
/
projects
/
{id}
/
executions
List executions
curl --request GET \
  --url https://bugzy.ai/api/v1/projects/{id}/executions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "task_slug": "run-tests",
      "status": "queued",
      "triggered_by": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "environment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "pagination": {
    "hasMore": true,
    "cursor": "<string>"
  }
}

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

Query Parameters

status
string

Filter by status (comma-separated)

limit
integer
default:20
Required range: x <= 50
cursor
string

Response

200 - application/json

List of executions

data
object[]
pagination
object