> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apowerb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Pipelines

> Endpoint to list all available pipelines.



## OpenAPI

````yaml /api-reference/openapi.json get /api/pipelines
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/pipelines:
    get:
      tags:
        - scheduler
      summary: List Pipelines
      description: Endpoint to list all available pipelines.
      operationId: list_pipelines_api_pipelines_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [List Pipeline Schedules](/api-reference/scheduler/list-pipeline-schedules.md)
- [Scheduler](/guides/scheduler.md)
- [Get Pipeline Run Logs](/api-reference/scheduler/get-pipeline-run-logs.md)
- [List Schedule Runs](/api-reference/scheduler/list-schedule-runs.md)
- [Update Pipeline Schedule](/api-reference/scheduler/update-pipeline-schedule.md)
