Models

List available models

get

Retrieve a list of all available AI models with details.

Authorizations
Responses
200
A list of models
application/json
get
GET /v1/models HTTP/1.1
Host: api.secton.org
Authorization: Bearer JWT
Accept: */*
{
  "object": "list",
  "data": [
    {
      "id": "copilot-zero",
      "object": "model",
      "category": "chat",
      "name": "Copilot Zero",
      "description": "Lightweight conversational AI model.",
      "capabilities": [
        "chat",
        "completion"
      ],
      "context_window": 4096,
      "cutoff_date": "2024-01-01",
      "pricing": "free tier available"
    }
  ]
}

Was this helpful?