List available grounded models
GET/v1/models
Returns the OpenAI-compatible model list plus capability metadata so callers can choose a model programmatically. _maps_to exposes the underlying Anthropic Claude model the grounded pipeline runs on.
Returns
object: "list"
List available grounded models
curl https://www.cemented.ai/v1/models \
-H "Authorization: Bearer $CEMENTED_AI_API_KEY"{
"data": [
{
"id": "id",
"created": 0,
"object": "model",
"owned_by": "owned_by",
"_maps_to": "_maps_to",
"context_length": 0,
"grounded": true,
"max_output_tokens": 0,
"search_providers": [
"string"
],
"supports_streaming": true,
"supports_tools": true
}
],
"object": "list"
}Returns Examples
{
"data": [
{
"id": "id",
"created": 0,
"object": "model",
"owned_by": "owned_by",
"_maps_to": "_maps_to",
"context_length": 0,
"grounded": true,
"max_output_tokens": 0,
"search_providers": [
"string"
],
"supports_streaming": true,
"supports_tools": true
}
],
"object": "list"
}