Skip to main content
GET
/
v1
/
models
List Models
curl --request GET \
  --url https://api.telaos.com/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "llama3.1:8b",
      "object": "model",
      "created": 1734387424,
      "owned_by": "system"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful Response

object
string
Example:

"list"

data
object[]