> ## 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 supported embedding models

> Returns all supported embedding models with their providers and default dimensions.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime/v1/embeddings/models
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/embeddings/models:
    get:
      tags:
        - Runtime API - Embeddings
      summary: List supported embedding models
      description: >-
        Returns all supported embedding models with their providers and default
        dimensions.
      operationId: RuntimeEmbeddingsController_listModels
      parameters: []
      responses:
        '200':
          description: List of supported models
          content:
            application/json:
              schema:
                example:
                  models:
                    - model: text-embedding-3-small
                      provider: openai
                      dimensions: 1536
                    - model: text-embedding-3-large
                      provider: openai
                      dimensions: 3072
                    - model: embed-english-v3.0
                      provider: cohere
                      dimensions: 1024
      security:
        - bearer: []
components: {}

````