List Embeddings Models
List models that currently support the embeddings endpoint.
GET/v1/embeddings/models
Request Example
bash
curl "https://api.therouter.ai/v1/embeddings/models" \
-H "Authorization: Bearer $THEROUTER_API_KEY"Response
Returns all embedding-capable models with full metadata.
json
{
"data": [
{
"id": "openai/text-embedding-3-large",
"object": "model",
"created": 1700000000,
"owned_by": "openai",
"name": "Text Embedding 3 Large",
"description": "Most capable embedding model for highest accuracy",
"context_length": 8191,
"pricing": {
"prompt": "0.00000013",
"completion": "0",
"request": "0",
"image": "0"
},
"architecture": null,
"top_provider": {
"context_length": 8191,
"max_completion_tokens": null,
"is_moderated": false
},
"supported_parameters": ["dimensions", "encoding_format"],
"per_request_limits": null
}
]
}Notes
Use this endpoint to dynamically drive model pickers in clients.