> ## Documentation Index
> Fetch the complete documentation index at: https://docs.akumi.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# List the models this key may call

> Returns the models the calling key's workspace may call, each with its context
window, output cap, capabilities, pricing and EU residency. Build a model picker
from this rather than hardcoding a list.



## OpenAPI

````yaml /api-reference/openapi.json get /models
openapi: 3.1.0
info:
  title: Akumi
  version: 0.0.1
servers:
  - url: https://api.akumi.eu/v1
    description: Production
security:
  - http: []
tags:
  - name: Audit log
  - name: Chat completions
  - name: Embeddings
  - name: Models
  - name: Recall
  - name: Scores
paths:
  /models:
    get:
      tags:
        - Models
      summary: List the models this key may call
      description: >-
        Returns the models the calling key's workspace may call, each with its
        context

        window, output cap, capabilities, pricing and EU residency. Build a
        model picker

        from this rather than hardcoding a list.
      operationId: v1.models.index
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    const: list
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        object:
                          type: string
                          const: model
                        owned_by:
                          type: string
                        kind:
                          type: string
                        context_length:
                          type:
                            - integer
                            - 'null'
                        max_output_tokens:
                          type:
                            - integer
                            - 'null'
                        capabilities:
                          type: array
                          items:
                            type: string
                        eu_resident:
                          type: boolean
                        aliased_to:
                          type:
                            - string
                            - 'null'
                        pricing:
                          type: object
                          properties:
                            credits_per_1k_input:
                              type: number
                            credits_per_1k_output:
                              type: number
                          required:
                            - credits_per_1k_input
                            - credits_per_1k_output
                      required:
                        - id
                        - object
                        - owned_by
                        - kind
                        - context_length
                        - max_output_tokens
                        - capabilities
                        - eu_resident
                        - aliased_to
                        - pricing
                required:
                  - object
                  - data
        '401':
          $ref: '#/components/responses/AuthenticationException'
components:
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
  securitySchemes:
    http:
      type: http
      scheme: bearer

````