List all pipelines
GET
/api/v1/pipelines
Retrieve a list of all configured pipelines
Authorizations
ApiKeyAuth
API Key authentication using X-API-Key header.
Example: X-API-Key: lbk_your_api_key_here
TypeAPI Key (header: X-API-Key)
or
BearerAuth
Bearer token authentication. Can be either a user JWT token or an API key.
Example: Authorization: Bearer <token_or_key>
TypeHTTP (bearer)
Parameters
Query Parameters
sort_by
Field to sort by
Typestring
Default
"created_at"sort_order
Sort order
Typestring
Valid values
"ASC""DESC"Default
"DESC"Responses
Successful response
application/json
JSON
{
"code": 0,
"msg": "ok",
"data": {
"pipelines": [
{
"uuid": "string",
"name": "string",
"config": {
},
"is_default": true,
"created_at": "string",
"updated_at": "string"
}
]
}
}
