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

# Get detailed information about a specific base model



## OpenAPI

````yaml get /v1/models/base/{model_name}
openapi: 3.0.0
info:
  title: Models API
  version: 1.0.0
  description: >-
    API for retrieving information about available LLM models, including base
    models and fine-tuned models
servers: []
security: []
paths:
  /v1/models/base/{model_name}:
    get:
      tags:
        - Base Models
      summary: Get detailed information about a specific base model
      parameters:
        - name: model_name
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BaseModelResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    BaseModelResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        description:
          type: string
        hf_url:
          type: string
        status:
          type: string
          enum:
            - ACTIVE
            - INACTIVE
            - DEPRECATED
        name:
          type: string
        meta:
          type: object
          additionalProperties: true
    ErrorResponse:
      type: object
      properties:
        status:
          type: integer
        message:
          type: string
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````