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

# List all datasources (CLI/SDK)

> Retrieves a paginated list of all datasources for CLI/SDK usage.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime/datasources
openapi: 3.0.0
info:
  title: Runflow Runtime API
  description: >-
    Programmatic surface for the Runflow platform — used by the SDK, the CLI,
    the execution engine, and any server-to-server caller. Authenticate with an
    `x-api-key` header (or `Authorization: Bearer ...`).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.runflow.ai
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags: []
paths:
  /api/v1/runtime/datasources:
    get:
      tags:
        - Runtime API - Datasources Management
      summary: List all datasources (CLI/SDK)
      description: Retrieves a paginated list of all datasources for CLI/SDK usage.
      operationId: RuntimeDatasourcesManagementController_listDatasources
      parameters:
        - name: page
          required: false
          in: query
          description: Page number
          schema:
            minimum: 1
            default: 1
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Items per page
          schema:
            minimum: 1
            maximum: 100
            default: 20
            example: 20
            type: number
      responses:
        '200':
          description: List of datasources retrieved successfully.
      security:
        - bearer: []
components: {}

````