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

# Models List

> Returns the list of active models associated with the organization.

Return every model that is enabled for your organization, including private custom checkpoints.


## OpenAPI

````yaml POST /v1/models/list
openapi: 3.1.0
info:
  title: GeneralCompute API
  version: 1.0.0
  description: OpenAI-compatible API surface for the GeneralCompute inference platform.
  contact:
    name: GeneralCompute
    url: https://www.generalcompute.com
servers:
  - url: https://api.generalcompute.com
    description: Production
  - url: http://localhost:3000
    description: Local
security: []
paths:
  /v1/models/list:
    post:
      tags:
        - Models
      summary: List models
      description: Returns the list of active models associated with the organization.
      responses:
        '200':
          description: List of available models
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelsListResponse'
        '401':
          description: API key missing or invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenAIError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ModelsListResponse:
      type: object
      properties:
        object:
          type: string
          enum:
            - list
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              object:
                type: string
                enum:
                  - model
              created:
                type: number
              owned_by:
                type: string
            required:
              - id
              - object
              - created
              - owned_by
      required:
        - object
        - data
    OpenAIError:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
            type:
              type: string
            param:
              type:
                - string
                - 'null'
            code:
              type:
                - string
                - 'null'
          required:
            - message
            - type
      required:
        - error
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````