BazaarLinkBazaarLink
Sign in
DocsAPI ReferenceSDK ReferenceAgentic UsageAI Skills
Embeddings

List embedding models

Returns available models, filterable via output_modalities. This is not a dedicated embeddings endpoint — it is the shared model-listing endpoint (GET /api/v1/models); passing output_modalities=embeddings narrows it to embedding models only. When the parameter is omitted, the default returns text models only, not everything.

GET/api/v1/models

Query parameters

output_modalities
string

A single comma-separated string (not repeated same-name query keys), e.g. embeddings or embeddings,image. Pass all to get every modality. Defaults to text only when omitted. Unrecognized values return 400.

comma-separated, single value
Example: "embeddings"
GET /api/v1/models
curl "https://bazaarlink.ai/api/v1/models?output_modalities=embeddings"
Response examples

Success. data[] contains only models matching the filter; each entry includes pricing (USD per million tokens), context_length, architecture.output_modalities, and related fields.

{
  "object": "list",
  "data": [
    {
      "id": "text-embedding-3-small",
      "object": "model",
      "owned_by": "openai",
      "name": "OpenAI: text-embedding-3-small",
      "context_length": 8191,
      "aliases": [
        "openai/text-embedding-3-small"
      ],
      "pricing": {
        "prompt": "0.00000002",
        "completion": "0"
      },
      "architecture": {
        "modality": "text->embedding",
        "input_modalities": [
          "text"
        ],
        "output_modalities": [
          "embeddings"
        ]
      }
    }
  ]
}
Support
Support
Hi! How can we help you?
Send a message and we'll get back to you soon.
List embedding models — BazaarLink API