Skip to content

List available AI models for an organization

GET
/api/v3/organizations/{organisation}/ai/models
curl --request GET \
--url 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/models?feature=embeddings' \
--header 'Authorization: Bearer <token>'
organisation
required
string

The organisation ID

feature
string
default: all
Allowed values: chat embeddings vision streaming all

Filter models by supported feature

Example
embeddings

List of available AI models

Media typeapplication/json
object
count
integer
models
Array<object>
object
id
string
name
string
provider
string
capabilities

Model capabilities and features

object
text

Supports text generation

boolean
multimodal

Supports images/video

boolean
embeddings

Supports embeddings

boolean
streaming

Supports streaming responses

boolean
toolUse

Supports function calling

boolean
Example
{
"count": 10,
"models": [
{
"id": "amazon.nova-lite-v1:0",
"name": "Amazon Nova Lite",
"provider": "Amazon"
}
]
}

Failed to fetch models