Skip to main content
GET
/
pipelines
List all pipelines
curl --request GET \
  --url https://api.artosai.com/pipelines \
  --header 'Authorization: Bearer <token>'
[
  {
    "pipelineId": "<string>",
    "name": "<string>",
    "status": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "last_executed": "2023-11-07T05:31:56Z",
    "agents_count": 123,
    "documents_count": 123,
    "executions_count": 123,
    "created_by": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer

Page number for pagination (1‑based).

Required range: x >= 1
limit
integer

Results per page (default varies by endpoint).

Required range: x >= 1
status
string

Filter by pipeline status (created, preset, updated, etc.).

name
string

Filter by pipeline name (partial match).

Response

200 - application/json

List of pipelines

pipelineId
string
name
string
status
string
created_at
string<date-time>
last_executed
string<date-time>
agents_count
integer
documents_count
integer
executions_count
integer
created_by
string