Skip to content
Get started

List available grounded models

GET/v1/models

List available grounded models

ReturnsExpand Collapse
data: array of object { id, created, object, 2 more }
id: string
created: number
object: "model"
owned_by: string
_maps_to: optional string
object: "list"

List available grounded models

curl https://api.example.com/v1/models \
    -H "Authorization: Bearer $CEMENTED_AI_API_KEY"
{
  "data": [
    {
      "id": "id",
      "created": 0,
      "object": "model",
      "owned_by": "owned_by",
      "_maps_to": "_maps_to"
    }
  ],
  "object": "list"
}
Returns Examples
{
  "data": [
    {
      "id": "id",
      "created": 0,
      "object": "model",
      "owned_by": "owned_by",
      "_maps_to": "_maps_to"
    }
  ],
  "object": "list"
}