Skip to content

List available models (OpenAI-compatible)

GET
/oai/v1/models
curl --request GET \
--url https://dashboard.quantcdn.io/oai/v1/models

Drop-in replacement for OpenAI’s GET /v1/models. Returns the model ids available to the organisation; pass one of these ids as model in chat/embeddings requests.

A list of model objects

Media typeapplication/json
object
object
string
data
Array<object>
object
id
string
object
string
created
integer
owned_by
string
Example
{
"object": "list",
"data": [
{
"id": "anthropic.claude-sonnet-4-6",
"object": "model",
"owned_by": "quant"
}
]
}

Missing or invalid API key