Skip to main content
GET
/
projects
/
{project_reference}
/
runs
List project runs
curl --request GET \
  --url https://api.veryfront.com/projects/{project_reference}/runs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "run_id": "<string>",
      "owner": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      },
      "parent_run_id": "<string>",
      "root_run_id": "<string>",
      "target": "<string>",
      "workflow_id": "<string>",
      "schedule_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "batch_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "runtime_target_environment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "runtime_target_branch_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "error": {
        "message": "<string>",
        "code": "<string>"
      },
      "logs": "<string>",
      "artifacts": [
        null
      ],
      "duration_ms": 123,
      "exit_code": 123,
      "start_mode": "<string>",
      "timeout_seconds": 123,
      "backoff_limit": 123,
      "trigger_id": "<string>",
      "created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "updated_at": "<string>",
      "created_at": "<string>",
      "started_at": "<string>",
      "completed_at": "<string>",
      "metadata": null,
      "input": null,
      "config": null,
      "output": null
    }
  ],
  "page_info": {
    "self": "<string>",
    "next": "<string>",
    "prev": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Path Parameters

project_reference
string
required
Minimum string length: 1

Query Parameters

limit
integer
default:100
Required range: 1 <= x <= 200
cursor
string
Minimum string length: 1

Response

200 - application/json

Project runs

data
object[]
required
page_info
object
required

Pagination cursor values for traversing the result set.