Skip to main content
GET
/
v1
/
pipelines
cURL
curl --request GET \
  --url https://api.qyl.dev/v1/pipelines
{
  "items": [
    {
      "event.name": "cicd.pipeline.start",
      "cicd.pipeline.name": "<string>",
      "cicd.pipeline.run.id": "<string>",
      "status": "pending",
      "system": "github_actions",
      "timestamp": "2023-11-07T05:31:56Z",
      "trigger_type": "push",
      "vcs.repository.ref.name": "<string>",
      "vcs.repository.ref.revision": "<string>",
      "duration_s": 1
    }
  ],
  "has_more": true,
  "next_cursor": "<string>",
  "prev_cursor": "<string>"
}

Query Parameters

pipelineName
string

Pipeline name filter

status
enum<string>

Status filter CI/CD pipeline status

Available options:
pending,
running,
success,
failed,
cancelled,
skipped
system
enum<string>

CI/CD system filter CI/CD systems/providers

Available options:
github_actions,
gitlab_ci,
jenkins,
azure_devops,
circleci,
travis_ci,
bitbucket_pipelines,
teamcity,
bamboo,
drone_ci,
buildkite,
tekton,
argocd,
flux,
spinnaker,
other
startTime
string<date-time>

Start time

endTime
string<date-time>

End time

limit
integer<int32>
default:100

Page size

Required range: 1 <= x <= 1000
cursor
string

Cursor

Response

The request has succeeded.

Cursor-based paginated response wrapper

items
object[]
required

List of items in this page

has_more
boolean
required

Whether there are more items available

next_cursor
string

Cursor for the next page (null if no more pages)

prev_cursor
string

Cursor for the previous page (null if first page)