stogas

List Models

Returns an OpenAI-compatible list of catalog model IDs accepted by the gateway.

GET
/v1/models

Response Body

application/json

application/json

curl -X GET "https://api.stogas.ai/v1/models"
{
  "object": "list",
  "data": [
    {
      "id": "gpt-5.5-latest",
      "object": "model",
      "created": 1,
      "owned_by": "stogas"
    }
  ]
}
{
  "error": {
    "message": "Catalog unavailable",
    "type": "internal_error"
  }
}