List Available Models

GET /v1/models

Retrieve a list of available models for chat completions and image generation.

Responses

  • 200 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • object string Required

      The object type, which is always 'list'.

      Value is list.

    • data array[object] Required

      An array of model objects.

      Hide data attributes Show data attributes object
      • id string Required

        The model identifier.

      • object string Required

        The object type, which is always 'model'.

        Value is model.

      • created integer Required

        The Unix timestamp (in seconds) when the model was created.

      • owned_by string Required

        The organization that owns the model.

GET /v1/models
curl \
 -X GET https://api.rimunace.xyz/v1/models
Response examples (200)
{
  "object": "list",
  "data": [
    {
      "id": "string",
      "object": "model",
      "created": 42,
      "owned_by": "string"
    }
  ]
}