New: Audio API, Embeddings & Realtime WebSocket now available!
osmAPI LogoosmAPI

Embedding Models

List all available embedding models

GET
/v1/embeddings/models

Response Body

application/json

curl -X GET "https://api.osmapi.com/v1/embeddings/models"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "family": "string",
      "description": "string",
      "providers": [
        {
          "providerId": "string",
          "modelName": "string",
          "pricing": {
            "prompt": "string"
          },
          "context_length": 0
        }
      ],
      "stability": "stable"
    }
  ]
}

How is this guide?