> ## 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.

# Public Models

> Public endpoint that returns the metadata for the models surfaced in docs and pricing pages.

Fetch the metadata that powers the public models list without authentication.


## OpenAPI

````yaml GET /v1/public/models
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/public/models:
    get:
      tags:
        - Public
      summary: List public models
      description: >-
        Public endpoint that returns the metadata for the models surfaced in
        docs and pricing pages.
      responses:
        '200':
          description: List of model metadata objects
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicModelsResponse'
components:
  schemas:
    PublicModelsResponse:
      type: object
      properties:
        object:
          type: string
          enum:
            - list
        data:
          type: array
          items:
            type: object
            properties:
              modelId:
                type: string
              displayName:
                type: string
              supportsReasoning:
                type: boolean
              supportsVision:
                type: boolean
              maxTokens:
                type:
                  - number
                  - 'null'
            required:
              - modelId
              - displayName
              - supportsReasoning
              - supportsVision
              - maxTokens
      required:
        - object
        - data

````