> ## 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

> List documents from a vector store with optional metadata filters



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime/v1/vectors/stores/{name}/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/v1/vectors/stores/{name}/documents:
    get:
      tags:
        - Runtime API - Vector Search
      summary: List Documents
      description: List documents from a vector store with optional metadata filters
      operationId: RuntimeVectorController_listDocuments
      parameters:
        - name: name
          required: true
          in: path
          description: Vector store name
          schema:
            type: string
        - name: limit
          required: false
          in: query
          description: Default 100
          schema:
            type: number
        - name: offset
          required: false
          in: query
          description: Default 0
          schema:
            type: number
        - name: metadataFilters
          required: false
          in: query
          description: JSON-encoded object of metadata equality filters
          schema:
            type: string
      responses:
        '200':
          description: >-
            { success, vectorStore, documents[], total, limit, offset, hasMore }
            on success.
        '401':
          description: Missing or invalid API key.
      security:
        - bearer: []
components: {}

````