# Gemini format

`GET /v1beta/models`

Returns the available models in Gemini API format

## Authorizations

Bearer authentication — send `Authorization: Bearer <token>`.

## Responses

### 200 — Model list returned

```json
{
  "type": "object",
  "properties": {
    "models": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "example": "models/gemini-pro"
          },
          "version": {
            "type": "string"
          },
          "displayName": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "inputTokenLimit": {
            "type": "integer"
          },
          "outputTokenLimit": {
            "type": "integer"
          },
          "supportedGenerationMethods": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}
```
