> ## 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 documents in vector store (CLI/SDK)

> Retrieves all documents from a specific vector store.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime/vector-stores/{id}/documents
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/vector-stores/{id}/documents:
    get:
      tags:
        - Runtime API - Vector Stores Management
      summary: List documents in vector store (CLI/SDK)
      description: Retrieves all documents from a specific vector store.
      operationId: RuntimeVectorStoresController_listDocuments
      parameters:
        - name: id
          required: true
          in: path
          description: Vector store ID or name
          schema:
            type: string
        - name: limit
          required: false
          in: query
          description: Limit results
          schema:
            example: 50
            type: number
        - name: offset
          required: false
          in: query
          description: Offset for pagination
          schema:
            example: 0
            type: number
      responses:
        '200':
          description: Documents retrieved successfully.
      security:
        - bearer: []
components: {}

````