v1

latestOpenAPI 3.1.0MIT2026-07-262861121.0 KB

List all available embedding models with detailed information

get/v1/embedding-models

Response

List of available embedding models

objectstring required

Always 'list'

Example response

{
  "object": "list",
  "data": [
    {
      "id": "text-embedding-3-small",
      "object": "model",
      "created": 1754480583,
      "owned_by": "openai",
      "name": "Text Embedding 3 Small",
      "description": "Most cost-effective OpenAI embedding model with dimension reduction support",
      "dimensions": 1536,
      "supports_dimensions": true,
      "max_tokens": 8191,
      "pricing": {
        "per_million_tokens": 0.02,
        "currency": "USD"
      }
    }
  ]
}