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

# List Models

> Returns available models in the standard OpenAI format.



## OpenAPI

````yaml GET /v1/models
openapi: 3.0.3
info:
  title: Mako API
  description: >-
    OpenAI-compatible API with autonomous tool orchestration for on-chain data,
    web search, and more.
  version: 1.0.0
  contact:
    name: DeepMako
    url: https://deepmako.com
servers:
  - url: https://gateway.deepmako.com
    description: Production
security:
  - walletAddress: []
    bearerAuth: []
paths:
  /v1/models:
    get:
      tags:
        - Endpoints
      summary: List Models
      description: >-
        Returns available models in the standard OpenAI format. Each model
        includes its canonical ID and accepted aliases.
      operationId: listModels
      responses:
        '200':
          description: List of available models
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                    example: list
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: mako-32b-conductor
                        object:
                          type: string
                          example: model
                        created:
                          type: integer
                          example: 1716854400
                        owned_by:
                          type: string
                          example: deepmako
                        aliases:
                          type: array
                          items:
                            type: string
                          example:
                            - conductor
components:
  securitySchemes:
    walletAddress:
      type: apiKey
      in: header
      name: x-wallet-address
      description: Your EVM wallet address for authentication and credit tracking.
    bearerAuth:
      type: http
      scheme: bearer
      description: API key obtained from the gateway. Not required in free mode.

````